mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-05 23:31:24 +00:00
21 lines
452 B
SQL
21 lines
452 B
SQL
drop table if exists tsv;
|
|
set output_format_parallel_formatting=1;
|
|
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;
|