Skip to content

Commit 5fb1f7c

Browse files
feat(duckdb): Mark ARRAY_UNION_AGG as unsupported [CLAUDE] (#7503)
1 parent 8ae2274 commit 5fb1f7c

2 files changed

Lines changed: 5 additions & 1 deletion

File tree

sqlglot-integration-tests

sqlglot/generators/duckdb.py

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3282,6 +3282,10 @@ def arrayuniqueagg_sql(self, expression: exp.ArrayUniqueAgg) -> str:
32823282
)
32833283
)
32843284

3285+
def arrayunionagg_sql(self, expression: exp.ArrayUnionAgg) -> str:
3286+
self.unsupported("ARRAY_UNION_AGG is not supported in DuckDB")
3287+
return self.function_fallback_sql(expression)
3288+
32853289
def arraydistinct_sql(self, expression: exp.ArrayDistinct) -> str:
32863290
arr = expression.this
32873291
func = self.func("LIST_DISTINCT", arr)

0 commit comments

Comments
 (0)