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.
2 parents a6334e1 + a7588b3 commit b14d26cCopy full SHA for b14d26c
airbyte/_processors/sql/duckdb.py
@@ -95,7 +95,7 @@ class DuckDBSqlProcessor(SqlProcessorBase):
95
so we insert as values instead.
96
"""
97
98
- supports_merge_insert = False
+ supports_merge_insert = True # DuckDB 1.4.0+ supports MERGE INTO natively
99
file_writer_class = JsonlWriter
100
sql_config: DuckDBConfig
101
airbyte/_processors/sql/motherduck.py
@@ -29,7 +29,7 @@
29
class MotherDuckSqlProcessor(DuckDBSqlProcessor):
30
"""A cache implementation for MotherDuck."""
31
32
+ supports_merge_insert = True # MotherDuck runs on DuckDB 1.4.0+ with native MERGE INTO support
33
34
cache: MotherDuckCache
35
0 commit comments