We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f8b3507 commit a24502aCopy full SHA for a24502a
controller/transfer/checks.py
@@ -193,7 +193,7 @@ def build_df_sql(project_id: str) -> Tuple[str, List[str]]:
193
sql = "SELECT id record_id"
194
keys = []
195
for att in primary_keys:
196
- sql += f", r.data->>'{att.name}' {att.name}"
+ sql += f", r.data->>'{att.name}' \"{att.name}\""
197
keys.append(att.name)
198
sql += f"\nFROM record r WHERE project_id = '{project_id}'"
199
return sql, keys
0 commit comments