quote status table (#36503)

This commit is contained in:
Benjamin Dauvergne 2019-09-30 13:39:55 +02:00
parent 9698d7852a
commit b544f4f938
2 changed files with 2 additions and 2 deletions

View File

@ -334,7 +334,7 @@
"detail" : "id",
"master" : "status_id",
"name" : "status",
"table" : "status_demande"
"table" : "\"status_demande\""
},
{
"detail" : "id",

View File

@ -906,7 +906,7 @@ class WcsFormdefFeeder(object):
# add dimension for status
cube['joins'].append({
'name': 'status',
'table': self.status_table_name,
'table': quote(self.status_table_name),
'master': 'status_id',
'detail': 'id',
})