Lordworms commented on code in PR #9958:
URL: https://github.com/apache/arrow-datafusion/pull/9958#discussion_r1553578894
##########
datafusion/sqllogictest/test_files/scalar.slt:
##########
@@ -1779,6 +1779,18 @@ SELECT COALESCE(NULL, 'test')
----
test
+
+statement ok
+create table test1 as values (arrow_cast('foo', 'Dictionary(Int32, Utf8)')),
(null);
+
+
+query ?
+select coalesce(column1, 'none_set') from test1;
+----
+foo
+none_set
+
Review Comment:
sure
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]