BubbaJoe opened a new issue, #6075:
URL: https://github.com/apache/arrow-datafusion/issues/6075

   ### Is your feature request related to a problem or challenge?
   
   Hello,
   
   I have an array data type and i would like to be able to run the following 
functions.
   
   ### Describe the solution you'd like
   
   array_length(col)
   array_contains(col<T>, T) `AND/OR` select * from my_table where 
'text'=ANY(my_col);
   array_unnest()
   
   ```
   # TABLE
   | food | ingredients          |
   | ---- | -------------------- |
   | user | [eggs, salt, pepper] |
   
   # SQL INPUT
   # SELECT food, unnest(ingredients) from TABLE
   
   # SQL OUTPUT
   | food | unnest(ingredients) |
   | ---- | ------------------- |
   | user | eggs                |
   | user | pepper              |
   | user | salt                |
   ```
   
   ### 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]

Reply via email to