Skip to content

Commit

Permalink
fix tests
Browse files Browse the repository at this point in the history
  • Loading branch information
b41sh committed Jan 17, 2025
1 parent a1ed475 commit 3784b24
Showing 1 changed file with 6 additions and 6 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -398,18 +398,18 @@ select json_array_reduce([1,2,3,4]::Variant, (x, y) -> 3 + x + y), json_array_tr
----
19 []

query T
SELECT arrays_zip(1, 'a', null);
----
[(1,'a',NULL)]

query T
SELECT arrays_zip([1,2,3], ['a','b','c'], 10);
----
[(1,'a',10),(2,'b',10),(3,'c',10)]

statement error 1006
SELECT arrays_zip([1,2,3], ['a','b'], 10);

query T
SELECT arrays_zip(1, 'a', null);
----
[(1,'a',NULL)]

query T
SELECT arrays_zip(col1, col2) FROM t3;
Expand Down

0 comments on commit 3784b24

Please sign in to comment.