[ https://issues.apache.org/jira/browse/SPARK-23736?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ]
Marek Novotny updated SPARK-23736: ---------------------------------- Description: Extend the _concat_ function to also support array columns. Example: concat(array(1, 2, 3), array(10, 20, 30), array(100, 200)) => [1, 2, 3,10, 20, 30,100, 200] was: Implement the _concat_arrays_ function that merges two or more array columns into one. If any of children values is null, the function should return null. {{def concat_arrays(columns : Column*): Column }} Example: [1, 2, 3], [10, 20, 30], [100, 200] => [1, 2, 3,10, 20, 30,100, 200] Summary: Extension of the concat function to support array columns (was: collection function: concat_arrays) > Extension of the concat function to support array columns > --------------------------------------------------------- > > Key: SPARK-23736 > URL: https://issues.apache.org/jira/browse/SPARK-23736 > Project: Spark > Issue Type: New Feature > Components: SQL > Affects Versions: 2.4.0 > Reporter: Marek Novotny > Priority: Major > > Extend the _concat_ function to also support array columns. > Example: > concat(array(1, 2, 3), array(10, 20, 30), array(100, 200)) => [1, 2, 3,10, > 20, 30,100, 200] -- This message was sent by Atlassian JIRA (v7.6.3#76005) --------------------------------------------------------------------- To unsubscribe, e-mail: issues-unsubscr...@spark.apache.org For additional commands, e-mail: issues-h...@spark.apache.org