v.22.12New Feature
Add Setting to Parse Nested JSON Objects as Strings
Add a new setting input_format_json_read_objects_as_strings that allows the parsing of nested JSON objects into Strings in all JSON input formats. This setting is disabled by default. #44052 (Kruglov Pavel).Why it matters
This feature addresses the need to treat nested JSON objects as raw strings during input parsing, which can simplify ingestion and handling of complex JSON structures without full deserialization.How to use it
To use this feature, enable the setting by settinginput_format_json_read_objects_as_strings = 1 when processing JSON input data. By default, it is disabled.