input_format_import_nested_json | 将嵌套的 JSON 数据映射到嵌套表(适用于 JSONEachRow 格式)。 | false | |
input_format_json_read_bools_as_numbers | 允许在 JSON 输入格式中将布尔值解析为数字。 | true | |
input_format_json_read_bools_as_strings | 允许在 JSON 输入格式中将布尔值解析为字符串。 | true | |
input_format_json_read_numbers_as_strings | 允许在 JSON 输入格式中将数字解析为字符串。 | true | |
input_format_json_read_arrays_as_strings | 允许在 JSON 输入格式中将 JSON 数组解析为字符串。 | true | |
input_format_json_read_objects_as_strings | 允许在 JSON 输入格式中将 JSON 对象解析为字符串。 | true | |
input_format_json_named_tuples_as_objects | 将命名元组列解析为 JSON 对象。 | true | |
input_format_json_try_infer_numbers_from_strings | 在模式推断时尝试从字符串字段中推断数字。 | false | |
input_format_json_try_infer_named_tuples_from_objects | 在模式推断期间尝试从 JSON 对象中推断命名元组。 | true | |
input_format_json_infer_incomplete_types_as_strings | 在 JSON 输入格式中,在模式推断期间,针对只包含 Null 或空对象/数组的键使用字符串类型。 | true | |
input_format_json_defaults_for_missing_elements_in_named_tuple | 在解析命名元组时,为 JSON 对象中缺失的元素插入默认值。 | true | |
input_format_json_ignore_unknown_keys_in_named_tuple | 在命名元组的 JSON 对象中忽略未知键。 | false | |
input_format_json_compact_allow_variable_number_of_columns | 在 JSONCompact/JSONCompactEachRow 格式中允许可变数量的列,忽略多余的列并对缺失的列使用默认值。 | false | |
input_format_json_throw_on_bad_escape_sequence | 如果 JSON 字符串包含错误的转义序列,则抛出异常。如果禁用,将保持错误的转义序列在数据中不变。 | true | |
input_format_json_empty_as_default | 将 JSON 输入中的空字段视为默认值。 | false | 对于复杂的默认表达式,input_format_defaults_for_omitted_fields 也必须启用。 |
output_format_json_quote_64bit_integers | 控制 JSON 输出格式中 64 位整数的引用方式。 | true | |
output_format_json_quote_64bit_floats | 控制 JSON 输出格式中 64 位浮点数的引用方式。 | false | |
output_format_json_quote_denormals | 启用 JSON 输出格式中的 '+nan','-nan','+inf','-inf' 输出。 | false | |
output_format_json_quote_decimals | 控制 JSON 输出格式中小数的引用方式。 | false | |
output_format_json_escape_forward_slashes | 控制 JSON 输出格式中字符串输出的前斜杠转义。 | true | |
output_format_json_named_tuples_as_objects | 将命名元组列序列化为 JSON 对象。 | true | |
output_format_json_array_of_rows | 以 JSONEachRow(Compact) 格式输出所有行的 JSON 数组。 | false | |
output_format_json_validate_utf8 | 启用 JSON 输出格式中 UTF-8 序列的验证。 | false | 注意,这不会影响格式 JSON/JSONCompact/JSONColumnsWithMetadata,它们总是验证 utf8。 |