Ensure column names on indexes on views are properly quoted in RE-SQL. Fixes #3066

This commit is contained in:
Khushboo Vashi 2018-02-20 16:47:33 +00:00 committed by Dave Page
parent 3021060a32
commit 9a498c2877

View File

@ -776,7 +776,7 @@ class ViewNode(PGChildNodeView, VacuumSettings):
# We need all data as collection for ColumnsModel
cols_data = {
'colname': row['attdef'].strip('"'),
'colname': row['attdef'],
'collspcname': row['collnspname'],
'op_class': row['opcname'],
}