Skip to content

Commit 9ccedd5

Browse files
authored
fix: catalog migration bigquery (#1955)
1 parent e1e85cd commit 9ccedd5

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

sqlmesh/migrations/v0034_add_default_catalog.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -261,7 +261,7 @@ def migrate(state_sync, default_catalog: t.Optional[str], **kwargs): # type: ig
261261
# expression a null timestamp value in pandas that works across all engines
262262
if default_catalog:
263263
engine_adapter.execute(
264-
exp.update(environments_table, {"finalized_ts": None}),
264+
exp.update(environments_table, {"finalized_ts": None}, where="1=1"),
265265
quote_identifiers=True,
266266
)
267267

0 commit comments

Comments
 (0)