Jefffrey commented on issue #9706:
URL: https://github.com/apache/datafusion/issues/9706#issuecomment-3637186217

   Error is now:
   
   ```sql
   DataFusion CLI v51.0.0
   > CREATE TABLE array_intersect_table
   AS VALUES
     ([1, 2, 2, 3], [2, 3, 4]),
     ([2, 3, 3], [3]),
     ([3], [3, 3, 4]),
     (null, [3, 4]),
     ([1, 2], null),
     (null, null)
   ;
   0 row(s) fetched.
   Elapsed 0.078 seconds.
   
   > select array_intersect(column1, column2) from array_intersect_table;
   Arrow error: Invalid argument error: Incorrect number of arrays provided to 
RowConverter, expected 1 got 0
   ```
   
   Need some debugging in the implementation here:
   
   
https://github.com/apache/datafusion/blob/2a08013af3ccf703bee202c959b40bb0d35bdea1/datafusion/functions-nested/src/set_ops.rs
   
   Add SLT tests here:
   
   
https://github.com/apache/datafusion/blob/2a08013af3ccf703bee202c959b40bb0d35bdea1/datafusion/sqllogictest/test_files/array.slt


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