ClickHouse/tests/queries/0_stateless/02422_read_numbers_as_strings.sql

4 lines
207 B
MySQL
Raw Normal View History

2022-09-08 16:07:20 +00:00
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"]}');