mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-06 07:32:27 +00:00
97f2a2213e
* Move some code outside dbms/src folder * Fix paths
9 lines
335 B
SQL
9 lines
335 B
SQL
drop table if exists max_parts_in_total;
|
|
create table max_parts_in_total (x UInt64) ENGINE = MergeTree PARTITION BY x ORDER BY x SETTINGS max_parts_in_total = 10;
|
|
|
|
INSERT INTO max_parts_in_total SELECT number FROM numbers(10);
|
|
SELECT 1;
|
|
INSERT INTO max_parts_in_total SELECT 123; -- { serverError 252 }
|
|
|
|
drop table max_parts_in_total;
|