We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent dc302eb commit 1124b63Copy full SHA for 1124b63
sqlmesh/core/snapshot/evaluator.py
@@ -747,11 +747,8 @@ def _evaluate_snapshot(
747
adapter.execute(model.render_pre_statements(**render_statements_kwargs))
748
749
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
- )
+ columns_to_types_provided = model.kind.is_materialized and model.annotated
+
755
if self._can_clone(snapshot, deployability_index):
756
self._clone_snapshot_in_dev(
757
snapshot=snapshot,
0 commit comments