jayzhan211 commented on issue #10935:
URL: https://github.com/apache/datafusion/issues/10935#issuecomment-2171495707

   For this kind of query `select unnest(unnest([[1],[1,2],[1,2,3]]));`, I 
think we can follow what Duckdb is.
   
   Unnest with recursive, and max_depth
   
   `select unnest([[1],[1,2],[1,2,3]], recursive:= true);`
   or `select unnest([[1],[1,2],[1,2,3]], max_depth := 2);`
   


-- 
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: github-unsubscr...@datafusion.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org


---------------------------------------------------------------------
To unsubscribe, e-mail: github-unsubscr...@datafusion.apache.org
For additional commands, e-mail: github-h...@datafusion.apache.org

Reply via email to