Skip to content

Commit b8ea6de

Browse files
committed
Fix: Support start_* / end_* macros in the incremental unmanaged models
1 parent 969c7b3 commit b8ea6de

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

sqlmesh/core/model/kind.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -112,7 +112,7 @@ def is_materialized(self) -> bool:
112112
@property
113113
def only_execution_time(self) -> bool:
114114
"""Whether or not this model only cares about execution time to render."""
115-
return self.is_view or self.is_full or self.is_incremental_unmanaged or self.is_scd_type_2
115+
return self.is_view or self.is_full or self.is_scd_type_2
116116

117117

118118
class ModelKindName(str, ModelKindMixin, Enum):

0 commit comments

Comments
 (0)