Skip to content

Commit 12a3930

Browse files
committed
start with supporting all strategies
1 parent 869a92b commit 12a3930

File tree

1 file changed

+6
-0
lines changed

1 file changed

+6
-0
lines changed

dbt/adapters/sqlserver/sql_server_adapter.py

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -99,6 +99,12 @@ def get_rows_different_sql(
9999

100100
return sql
101101

102+
def valid_incremental_strategies(self):
103+
"""The set of standard builtin strategies which this adapter supports out-of-the-box.
104+
Not used to validate custom strategies defined by end users.
105+
"""
106+
return ["append", "delete+insert", "merge", "insert_overwrite"]
107+
102108
# This is for use in the test suite
103109
def run_sql_for_tests(self, sql, fetch, conn):
104110
cursor = conn.handle.cursor()

0 commit comments

Comments
 (0)