ClickHouse/tests/queries/0_stateless/01514_parallel_formatting.sql

21 lines
452 B
MySQL
Raw Normal View History

2020-10-06 14:02:01 +00:00
drop table if exists tsv;
set output_format_parallel_formatting=1;
2020-10-06 14:02:01 +00:00
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;