You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
select json_extract_keys_and_values_raw('{"a":1,"b":2}') works and return an array.
However, the user expects to get a map, to easily access key/value pairs.
If we run extract_key_value_pairs('"a":1,"b":2') this can return a map with a and b as key
ClickHouse supports
SELECT extractKeyValuePairs('name:neymar, age:31 team:psg,nationality:brazil') as kv
https://clickhouse.com/docs/en/sql-reference/functions/tuple-map-functions#extractkeyvaluepairsThis is mentioned in our of our community user. Current this is not available in Proton
Unknown function extract_key_value_pairs. (UNKNOWN_FUNCTION) (version 1.3.31).
The text was updated successfully, but these errors were encountered: