We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent fe7005e commit e02bc5bCopy full SHA for e02bc5b
sqlmesh/core/config/root.py
@@ -261,6 +261,11 @@ def _normalize_identifiers(key: str) -> None:
261
"Please specify one or the other"
262
)
263
264
+ if self.plan.use_finalized_state and not self.virtual_environment_mode.is_full:
265
+ raise ConfigError(
266
+ "Using the finalized state is only supported when `virtual_environment_mode` is set to `full`."
267
+ )
268
+
269
if self.environment_catalog_mapping:
270
_normalize_identifiers("environment_catalog_mapping")
271
if self.physical_schema_mapping:
0 commit comments