mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-10 01:25:21 +00:00
7 lines
231 B
SQL
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;
|