jayzhan211 commented on code in PR #8516: URL: https://github.com/apache/arrow-datafusion/pull/8516#discussion_r1428601985
########## datafusion/sqllogictest/test_files/array.slt: ########## @@ -2120,23 +2120,29 @@ NULL # array_union scalar function #11 query ? +select array_union([1, 1, 2, 2, 3, 3], null); +---- +[1, 2, 3] + +# array_union scalar function #12 +query ? +select array_union(null, [1, 1, 2, 2, 3, 3]); +---- +[1, 2, 3] Review Comment: This is correct -- 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]
