v.23.4New Feature
Support Map Type in JSONExtract
Why it matters
This feature enables users to directly extract JSON objects asMap types, allowing more convenient and type-safe handling of JSON key-value data within ClickHouse queries.How to use it
Use theJSONExtract function with the target type set to Map to extract JSON objects from string columns. For example:SELECT JSONExtract(your_json_column, 'Map(String, Int32)') FROM your_table;