Map Functions
map
Returns an empty map.
Supported Signatures
map_concat
Returns the union of all the given maps. If a key is found in multiple given maps, that key’s value in the resulting map comes from the last one of those maps.
Supported Signatures
map_entries
Returns an array of all entries in the given map.
Supported Signatures
map_filter
Constructs a map from those entries of map for which function returns true.
Supported Signatures
map_from_entries
Returns a map created from the given array of entries.
Supported Signatures
map_keys
Returns all the keys in the map x.
Supported Signatures
map_values
Returns all the values in the map x.
Supported Signatures
map_zip_with
Merges the two given maps into a single map by applying function to the pair of values with the same key. For keys only presented in one map, NULL will be passed as the value for the missing key.
Supported Signatures
multimap_from_entries
Returns a multimap created from the given array of entries. Each key can be associated with multiple values.
Supported Signatures
transform_keys
Returns a map that applies function to each entry of map and transforms the keys.
Supported Signatures
transform_values
Returns a map that applies function to each entry of map and transforms the values.
Supported Signatures