We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b3f8037 commit 26d22f1Copy full SHA for 26d22f1
sqlmesh/dbt/manifest.py
@@ -1,3 +1,4 @@
1
+# ruff: noqa: E402
2
from __future__ import annotations
3
4
import json
@@ -8,7 +9,11 @@
8
9
from collections import defaultdict
10
from pathlib import Path
11
-from dbt import flags
12
+from dbt import constants as dbt_constants, flags
13
+
14
+# Override the file name to prevent dbt commands from invalidating the cache.
15
+dbt_constants.PARTIAL_PARSE_FILE_NAME = "sqlmesh_partial_parse.msgpack"
16
17
from dbt.adapters.factory import register_adapter, reset_adapters
18
from dbt.config import Profile, Project, RuntimeConfig
19
from dbt.config.profile import read_profile
0 commit comments