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
Copy file name to clipboardExpand all lines: sqlmesh_dbt/operations.py
+2-3Lines changed: 2 additions & 3 deletions
Original file line number
Diff line number
Diff line change
@@ -109,10 +109,9 @@ def _plan_options(
109
109
dict(
110
110
# don't create views for all of prod in the dev environment
111
111
include_unmodified=False,
112
-
# always plan from scratch against prod rather than planning against the previous state of an existing dev environment
113
-
# this results in the full scope of changes vs prod always being shown on the local branch
112
+
# always plan from scratch against prod. note that this is coupled with the `always_recreate_environment=True` setting in the default config file.
113
+
# the result is that rather than planning against the previous state of an existing dev environment, the full scope of changes vs prod are always shown
114
114
create_from=c.PROD,
115
-
always_recreate_environment=True,
116
115
# Always enable dev previews for incremental / forward-only models.
117
116
# Due to how DBT does incrementals (INCREMENTAL_UNMANAGED on the SQLMesh engine), this will result in the full model being refreshed
118
117
# with the entire dataset, which can potentially be very large. If this is undesirable, users have two options:
0 commit comments