You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
sqlmesh plan --select-model A --include-unmodified dev creates a dev environment that contains not only the selected model A, but also other unmodified models.
How to reproduce
Execute the following commands (demo duckdb project):
sqlmesh init
sqlmesh plan
sqlmesh plan --select-model sqlmesh_example.incremental_model --include-unmodified dev
Current behavior
The dev environment is created and contains not only the selected sqlmesh_example.incremental_model, but also other (unmodified) project models: sqlmesh_example.full_model and sqlmesh_example.seed_model.
Expected behavior
The dev environment is created and contains only the selected sqlmesh_example.incremental_model.