mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-11 10:04:06 +00:00
13 lines
962 B
SQL
13 lines
962 B
SQL
select * from numbers(100) settings max_result_rows = 1; -- { serverError 396 }
|
|
select * from numbers(100) FORMAT JSON settings max_result_rows = 1; -- { serverError 396 }
|
|
select * from numbers(100) FORMAT TSVWithNamesAndTypes settings max_result_rows = 1; -- { serverError 396 }
|
|
select * from numbers(100) FORMAT CSVWithNamesAndTypes settings max_result_rows = 1; -- { serverError 396 }
|
|
select * from numbers(100) FORMAT JSONCompactEachRowWithNamesAndTypes settings max_result_rows = 1; -- { serverError 396 }
|
|
select * from numbers(100) FORMAT XML settings max_result_rows = 1; -- { serverError 396 }
|
|
|
|
SET max_result_rows = 1;
|
|
select * from numbers(10); -- { serverError 396 }
|
|
select * from numbers(10) SETTINGS result_overflow_mode = 'break', max_block_size = 1 FORMAT PrettySpaceNoEscapes;
|
|
select * from numbers(10) settings max_result_rows = 10;
|
|
select * from numbers(10) FORMAT JSONCompact settings max_result_rows = 10, output_format_write_statistics = 0;
|