Skip to content

Commit 6c4593a

Browse files
committed
test
1 parent 8ad4b7f commit 6c4593a

File tree

1 file changed

+8
-1
lines changed
  • datafusion/sqllogictest/test_files/spark/string

1 file changed

+8
-1
lines changed

datafusion/sqllogictest/test_files/spark/string/concat.slt

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,4 +38,11 @@ SELECT concat();
3838
query T
3939
SELECT concat('');
4040
----
41-
(empty)
41+
(empty)
42+
43+
44+
query T
45+
SELECT concat(a, b, c) from (select 'a' a, 'b' b, 'c' c union all select null a, 'b', 'c') order by 1 nulls last;
46+
----
47+
abc
48+
NULL

0 commit comments

Comments
 (0)