ClickHouse/tests/queries/0_stateless/01486_json_array_output.sql
2021-09-12 17:15:28 +03:00

7 lines
231 B
SQL

-- Tags: no-fasttest
set output_format_json_array_of_rows = 1;
select number a, number * 2 b from numbers(3) format JSONEachRow;
select * from numbers(1) format JSONEachRow;
select * from numbers(1) where null format JSONEachRow;