mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-19 22:22:00 +00:00
8 lines
279 B
SQL
8 lines
279 B
SQL
-- Tags: no-fasttest
|
|
|
|
set input_format_json_read_numbers_as_strings=1;
|
|
select * from format(JSONEachRow, '{"x" : 123}\n{"x" : "str"}');
|
|
select * from format(JSONEachRow, '{"x" : [123, "str"]}');
|
|
select * from format(JSONEachRow, '{"x" : [123, "456"]}\n{"x" : ["str", "rts"]}');
|
|
|