Skip to content

Commit 2f1aa1f

Browse files
committed
Added asymmetrical test
1 parent 4443883 commit 2f1aa1f

File tree

1 file changed

+6
-0
lines changed

1 file changed

+6
-0
lines changed

datafusion/sqllogictest/test_files/array.slt

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1773,6 +1773,12 @@ select array_union([1,2,3], []);
17731773
----
17741774
[1, 2, 3]
17751775

1776+
# array_union scalar function #4
1777+
query ?
1778+
select array_union([1, 2, 3, 4], [5, 4]);
1779+
----
1780+
[1, 2, 3, 4, 5]
1781+
17761782

17771783
# list_to_string scalar function #4 (function alias `array_to_string`)
17781784
query TTT

0 commit comments

Comments
 (0)