HyukjinKwon commented on issue #26279: [SPARK-28382][SQL] Add array function - unnest URL: https://github.com/apache/spark/pull/26279#issuecomment-551271585 ```sql postgres=# select unnest(array[array[1, 2], array[3, 4]]); unnest -------- 1 2 3 4 (4 rows) ``` this case seems unsupported in this PR: ```scala scala> sql("select unnest(array(array(1, 2), array(1, 2)))").show() +------+ |unnest| +------+ +------+ ```
---------------------------------------------------------------- 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: [email protected] With regards, Apache Git Services --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
