comphead commented on code in PR #4744:
URL: https://github.com/apache/datafusion-comet/pull/4744#discussion_r3508671122


##########
spark/src/test/resources/sql-tests/expressions/array/array_filter.sql:
##########
@@ -19,7 +19,7 @@ statement
 CREATE TABLE test_array_filter(arr array<int>) USING parquet
 
 statement
-INSERT INTO test_array_filter VALUES (array(1, 2, 3, 4, 5)), (array(-1, 0, 
1)), (array(10)), (NULL)
+INSERT INTO test_array_filter VALUES (array(1, 2, 3, 4, 5)), (array(-1, 0, 1, 
NULL)), (array(NULL, NULL)), (array(10)), (NULL), (array())
 
 query
 SELECT filter(arr, x -> x > 2) FROM test_array_filter

Review Comment:
   and also column capture



-- 
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]

Reply via email to