We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 543a309 commit febb7aaCopy full SHA for febb7aa
sqlmesh/core/config/root.py
@@ -264,6 +264,11 @@ def _normalize_identifiers(key: str) -> None:
264
"Please specify one or the other"
265
)
266
267
+ if self.plan.use_finalized_state and not self.virtual_environment_mode.is_full:
268
+ raise ConfigError(
269
+ "Using the finalized state is only supported when `virtual_environment_mode` is set to `full`."
270
+ )
271
+
272
if self.environment_catalog_mapping:
273
_normalize_identifiers("environment_catalog_mapping")
274
if self.physical_schema_mapping:
0 commit comments