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 1f39998 commit 88c5d38Copy full SHA for 88c5d38
sqlmesh/dbt/manifest.py
@@ -11,14 +11,16 @@
11
from functools import cached_property
12
from pathlib import Path
13
14
-from dbt import constants as dbt_constants, flags
+from dbt import flags
15
16
from sqlmesh.dbt.util import DBT_VERSION
17
from sqlmesh.utils.conversions import make_serializable
18
19
# Override the file name to prevent dbt commands from invalidating the cache.
20
21
if DBT_VERSION >= (1, 6, 0):
22
+ from dbt import constants as dbt_constants
23
+
24
dbt_constants.PARTIAL_PARSE_FILE_NAME = "sqlmesh_partial_parse.msgpack" # type: ignore
25
else:
26
from dbt.parser import manifest as dbt_manifest # type: ignore
0 commit comments