MAP_CONCAT (Lakehouse v2)
Concatenates multiple maps into a single map.
Analyze Syntax
Section titled “Analyze Syntax”func.map_concat(map1, map2)Analyze Examples
Section titled “Analyze Examples”func.map_concat(MAP{'a':1}, MAP{'b':2})
┌───────────────┐│ {'a':1,'b':2} │└───────────────┘SQL Syntax
Section titled “SQL Syntax”MAP_CONCAT(map1, map2)SQL Examples
Section titled “SQL Examples”SELECT MAP_CONCAT(MAP{'a':1}, MAP{'b':2});
┌───────────────┐│ {"a":1,"b":2} │└───────────────┘