mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-10 01:25:21 +00:00
24 lines
513 B
SQL
24 lines
513 B
SQL
drop table if exists tsv;
|
|
set output_format_parallel_formatting=1;
|
|
set max_read_buffer_size=1048576;
|
|
set max_block_size=65505;
|
|
|
|
create table tsv(a int, b int default 7) engine File(TSV);
|
|
|
|
insert into tsv(a) select number from numbers(10000000);
|
|
select '10000000';
|
|
select count() from tsv;
|
|
|
|
|
|
insert into tsv(a) select number from numbers(10000000);
|
|
select '20000000';
|
|
select count() from tsv;
|
|
|
|
|
|
insert into tsv(a) select number from numbers(10000000);
|
|
select '30000000';
|
|
select count() from tsv;
|
|
|
|
|
|
drop table tsv;
|