Jefffrey commented on code in PR #18836: URL: https://github.com/apache/datafusion/pull/18836#discussion_r2548284935
########## datafusion/sqllogictest/test_files/spark/bitwise/bit_get.slt: ########## @@ -69,7 +69,17 @@ SELECT bit_get(NULL, 0); ---- NULL +query I +SELECT bit_get(NULL::int, 0); +---- +NULL + query I SELECT bit_get(11, NULL); ---- NULL + +query I +SELECT bit_get(11, NULL::int); +---- +NULL Review Comment: Thanks, added -- 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]
