Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
22 changes: 11 additions & 11 deletions .circleci/continue_config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -302,18 +302,18 @@ workflows:
matrix:
parameters:
engine:
- snowflake
- databricks
# - snowflake
# - databricks
- redshift
- bigquery
- clickhouse-cloud
- athena
- fabric
- gcp-postgres
filters:
branches:
only:
- main
# - bigquery
# - clickhouse-cloud
# - athena
# - fabric
# - gcp-postgres
# filters:
# branches:
# only:
# - main
Comment on lines +313 to +316
Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

TODO: reinstate before merging.

- ui_style
- ui_test
- vscode_test
Expand Down
7 changes: 2 additions & 5 deletions sqlmesh/core/snapshot/evaluator.py
Original file line number Diff line number Diff line change
Expand Up @@ -747,11 +747,8 @@ def _evaluate_snapshot(
adapter.execute(model.render_pre_statements(**render_statements_kwargs))

if not target_table_exists or (model.is_seed and not snapshot.intervals):
columns_to_types_provided = (
model.kind.is_materialized
and model.columns_to_types_
and columns_to_types_all_known(model.columns_to_types_)
)
columns_to_types_provided = model.kind.is_materialized and model.annotated

if self._can_clone(snapshot, deployability_index):
self._clone_snapshot_in_dev(
snapshot=snapshot,
Expand Down
Loading