mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-21 07:01:59 +00:00
Add test
This commit is contained in:
parent
4a3ade1aa5
commit
bb77342606
@ -0,0 +1,16 @@
|
||||
DROP TABLE IF EXISTS broken_partition;
|
||||
|
||||
CREATE TABLE broken_partition
|
||||
(
|
||||
date Date,
|
||||
key UInt64
|
||||
)
|
||||
ENGINE = ReplicatedMergeTree('/clickhouse/test_01925_{database}/rmt', 'r1')
|
||||
ORDER BY tuple()
|
||||
PARTITION BY date;
|
||||
|
||||
ALTER TABLE broken_partition DROP PARTITION ID '20210325_0_13241_6_12747';
|
||||
|
||||
ALTER TABLE broken_partition DROP PARTITION ID '20210325_0_13241_6_12747';
|
||||
|
||||
DROP TABLE IF EXISTS broken_partition;
|
Loading…
Reference in New Issue
Block a user