Jefffrey commented on code in PR #23382: URL: https://github.com/apache/datafusion/pull/23382#discussion_r3551724409
########## datafusion/sqllogictest/test_files/array/array_has.slt: ########## @@ -41,13 +41,11 @@ select array_has([1, null, 2], 3), false false #TODO: array_has_all and array_has_any cannot handle NULL -#query BBBB -#select array_has_any([], null), -# array_has_any([1, 2, 3], null), -# array_has_all([], null), -# array_has_all([1, 2, 3], null); -#---- -#false false false false +query error array_has does not support type 'Null' +select array_has_any([], null), + array_has_any([1, 2, 3], null), + array_has_all([], null), + array_has_all([1, 2, 3], null); Review Comment: good point, ive split them up -- 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] --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
