Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 4 additions & 5 deletions datafusion/sqllogictest/test_files/array/array_union.slt
Original file line number Diff line number Diff line change
Expand Up @@ -114,11 +114,10 @@ select array_union(arrow_cast([], 'LargeList(Int64)'), arrow_cast([], 'LargeList
[]

# array_union scalar function #7
# re-enable when https://github.com/apache/arrow-rs/issues/9227 is fixed
# query ?
# select array_union([[null]], []);
# ----
# [[]]
query ?
select array_union([[null]], []);
----
[[NULL]]

query error DataFusion error: Error during planning: Failed to coerce arguments to satisfy a call to 'array_union' function:
select array_union(arrow_cast([[null]], 'LargeList(List(Int64))'), arrow_cast([], 'LargeList(Int64)'));
Expand Down
Loading