jayzhan211 opened a new issue, #10989:
URL: https://github.com/apache/datafusion/issues/10989

   ### Is your feature request related to a problem or challenge?
   
   ```
   # test unnest with filter
   statement ok
   create table t (a int[]) as values ([1,2,3]), ([4,5,6]);
   
   query error DataFusion error: External error: Arrow error: Invalid argument 
error: Invalid comparison operation: List\(Field \{ name: "item", data_type: 
Int32, nullable: true, dict_id: 0, dict_is_ordered: false, metadata: \{\} \}\) 
> Int32
   select ua from (select unnest(a) as ua from t) where ua > 3;
   ```
   
   The expected result is
   
   ```
   query
   select ua from (select unnest(a) as ua from t) where ua > 3;
   ----
   4
   5
   6
   ```
   
   ### Describe the solution you'd like
   
   _No response_
   
   ### Describe alternatives you've considered
   
   _No response_
   
   ### Additional context
   
   _No response_


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