dilipbiswal commented on pull request #27803:
URL: https://github.com/apache/spark/pull/27803#issuecomment-623211354


   Hi @maropu , currently we will be able use flatten and explode to achieve 
the same result ? Perhaps supporting nested generators will support more use 
cases. But a simple use case can work with flatten - FYI.
   ```
   scala> spark.sql("SELECT explode(flatten(array(array(4), array(5)))) v").show
   +---+
   |  v|
   +---+
   |  4|
   |  5|
   +---+
   ```


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

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



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

Reply via email to