Skip to content

Commit 4fc18ab

Browse files
committed
Chore: fix redshift integration test
1 parent dc302eb commit 4fc18ab

File tree

2 files changed

+13
-16
lines changed

2 files changed

+13
-16
lines changed

.circleci/continue_config.yml

Lines changed: 11 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -302,18 +302,18 @@ workflows:
302302
matrix:
303303
parameters:
304304
engine:
305-
- snowflake
306-
- databricks
305+
# - snowflake
306+
# - databricks
307307
- redshift
308-
- bigquery
309-
- clickhouse-cloud
310-
- athena
311-
- fabric
312-
- gcp-postgres
313-
filters:
314-
branches:
315-
only:
316-
- main
308+
# - bigquery
309+
# - clickhouse-cloud
310+
# - athena
311+
# - fabric
312+
# - gcp-postgres
313+
# filters:
314+
# branches:
315+
# only:
316+
# - main
317317
- ui_style
318318
- ui_test
319319
- vscode_test

sqlmesh/core/snapshot/evaluator.py

Lines changed: 2 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -747,11 +747,8 @@ def _evaluate_snapshot(
747747
adapter.execute(model.render_pre_statements(**render_statements_kwargs))
748748

749749
if not target_table_exists or (model.is_seed and not snapshot.intervals):
750-
columns_to_types_provided = (
751-
model.kind.is_materialized
752-
and model.columns_to_types_
753-
and columns_to_types_all_known(model.columns_to_types_)
754-
)
750+
columns_to_types_provided = model.kind.is_materialized and model.annotated
751+
755752
if self._can_clone(snapshot, deployability_index):
756753
self._clone_snapshot_in_dev(
757754
snapshot=snapshot,

0 commit comments

Comments
 (0)