Skip to content

Commit 4a83985

Browse files
feat: [SNOW-1890085] limit supported dbt commands
1 parent b236a39 commit 4a83985

File tree

1 file changed

+10
-8
lines changed

1 file changed

+10
-8
lines changed
Lines changed: 10 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,20 +1,22 @@
11
DBT_COMMANDS = [
22
"build",
3-
"clean",
4-
"clone",
53
"compile",
6-
"debug",
74
"deps",
8-
"docs",
9-
"init",
105
"list",
116
"parse",
12-
"retry",
13-
"run",
147
"run",
158
"seed",
169
"show",
1710
"snapshot",
18-
"source",
1911
"test",
2012
]
13+
14+
UNSUPPORTED_COMMANDS = [
15+
"clean",
16+
"clone",
17+
"debug",
18+
"docs",
19+
"init",
20+
"retry",
21+
"source",
22+
]

0 commit comments

Comments
 (0)