Details
-
Sub-task
-
Status: Resolved
-
Major
-
Resolution: Later
-
3.0.0
-
None
-
None
Description
postgres=# select array_cat(array[1,2], array[2]); array_cat ----------- {1,2,2} (1 row) postgres=# select concat(array[1,2], array[2]); concat ---------- {1,2}{2} (1 row)
// Some comments here spark-sql> select concat(array(1,2), array(2)); [1,2,2]