rename outer join to full outer join (fixes #11094)

This commit is contained in:
Benjamin Dauvergne 2017-02-24 12:13:56 +01:00
parent 3eb2ffb196
commit c4e8f06b09
1 changed files with 1 additions and 1 deletions

View File

@ -820,7 +820,7 @@ class WcsFormdefFeeder(object):
'detail': 'id',
})
if not field.required:
cube['joins'][-1]['kind'] = 'outer'
cube['joins'][-1]['kind'] = 'full'
cube['dimensions'].append({
'name': field.varname,
'label': field.label.lower(),