There was an error while loading. Please reload this page.
1 parent d91d698 commit 685eb50Copy full SHA for 685eb50
1 file changed
apps/bfd-pipeline-idr/loader.py
@@ -148,14 +148,14 @@ def __init__(
148
# rows that are actually updated during the upsert so that last updated can be ran for
149
# just rows with changes during the load
150
self.updated_keys_returning_str = ", ".join(
151
- set(
+ {
152
col
153
for col in [
154
*self.model.ordered_pkeys(),
155
self.model.last_updated_timestamp_col(),
156
]
157
if col
158
- )
+ }
159
)
160
self.timestamp_placeholders = ", ".join("%(timestamp)s" for _ in self.meta_keys)
161
0 commit comments