mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-22 23:52:03 +00:00
Fix tidy
This commit is contained in:
parent
c14e2e0b96
commit
cbfe00bb47
@ -850,7 +850,7 @@ MergeTreeData::MutableDataPartPtr Fetcher::downloadPartToDiskRemoteMeta(
|
||||
new_data_part->modification_time = time(nullptr);
|
||||
new_data_part->loadColumnsChecksumsIndexes(true, false);
|
||||
|
||||
data.lockSharedData(*new_data_part, /* replace_existing_lock = */ true);
|
||||
data.lockSharedData(*new_data_part, /* replace_existing_lock = */ true, {});
|
||||
|
||||
LOG_DEBUG(log, "Download of part {} unique id {} metadata onto disk {} finished.",
|
||||
part_name, part_id, disk->getName());
|
||||
|
@ -497,7 +497,7 @@ void ReplicatedMergeTreeSink::commitPart(
|
||||
part->name);
|
||||
}
|
||||
|
||||
storage.lockSharedData(*part, false);
|
||||
storage.lockSharedData(*part, false, {});
|
||||
|
||||
Coordination::Responses responses;
|
||||
Coordination::Error multi_code = zookeeper->tryMultiNoThrow(ops, responses); /// 1 RTT
|
||||
|
@ -236,7 +236,7 @@ public:
|
||||
bool executeFetchShared(const String & source_replica, const String & new_part_name, const DiskPtr & disk, const String & path);
|
||||
|
||||
/// Lock part in zookeeper for use shared data in several nodes
|
||||
void lockSharedData(const IMergeTreeDataPart & part, bool replace_existing_lock, std::optional<HardlinkedFiles> hardlinked_files = {}) const override;
|
||||
void lockSharedData(const IMergeTreeDataPart & part, bool replace_existing_lock, std::optional<HardlinkedFiles> hardlinked_files) const override;
|
||||
|
||||
void lockSharedDataTemporary(const String & part_name, const String & part_id, const DiskPtr & disk) const;
|
||||
|
||||
|
@ -0,0 +1,5 @@
|
||||
1
|
||||
1
|
||||
1
|
||||
1
|
||||
1
|
@ -0,0 +1,82 @@
|
||||
DROP TABLE IF EXISTS replace_partition_source;
|
||||
DROP TABLE IF EXISTS replace_partition_dest1;
|
||||
DROP TABLE IF EXISTS replace_partition_dest1_2;
|
||||
DROP TABLE IF EXISTS replace_partition_dest2;
|
||||
DROP TABLE IF EXISTS replace_partition_dest2_2;
|
||||
|
||||
CREATE TABLE replace_partition_source
|
||||
(
|
||||
key UInt64
|
||||
)
|
||||
ENGINE = ReplicatedMergeTree('/test/02271_replace_partition_many/{database}/source', '1')
|
||||
PARTITION BY key
|
||||
ORDER BY tuple();
|
||||
|
||||
INSERT INTO replace_partition_source VALUES (1);
|
||||
|
||||
CREATE TABLE replace_partition_dest1
|
||||
(
|
||||
key UInt64
|
||||
)
|
||||
ENGINE = ReplicatedMergeTree('/test/02271_replace_partition_many/{database}/dest1', '1')
|
||||
PARTITION BY key
|
||||
ORDER BY tuple();
|
||||
|
||||
CREATE TABLE replace_partition_dest1_2
|
||||
(
|
||||
key UInt64
|
||||
)
|
||||
ENGINE = ReplicatedMergeTree('/test/02271_replace_partition_many/{database}/dest1', '2')
|
||||
PARTITION BY key
|
||||
ORDER BY tuple();
|
||||
|
||||
|
||||
CREATE TABLE replace_partition_dest2
|
||||
(
|
||||
key UInt64
|
||||
)
|
||||
ENGINE = ReplicatedMergeTree('/test/02271_replace_partition_many/{database}/dest2', '1')
|
||||
PARTITION BY key
|
||||
ORDER BY tuple();
|
||||
|
||||
CREATE TABLE replace_partition_dest2_2
|
||||
(
|
||||
key UInt64
|
||||
)
|
||||
ENGINE = ReplicatedMergeTree('/test/02271_replace_partition_many/{database}/dest2', '2')
|
||||
PARTITION BY key
|
||||
ORDER BY tuple();
|
||||
|
||||
|
||||
ALTER TABLE replace_partition_dest1 REPLACE PARTITION 1 FROM replace_partition_source;
|
||||
ALTER TABLE replace_partition_dest2 REPLACE PARTITION 1 FROM replace_partition_source;
|
||||
|
||||
OPTIMIZE TABLE replace_partition_source FINAL;
|
||||
|
||||
SELECT sleep(3) FORMAT Null;
|
||||
SELECT sleep(3) FORMAT Null;
|
||||
SELECT sleep(3) FORMAT Null;
|
||||
SELECT sleep(3) FORMAT Null;
|
||||
SELECT sleep(3) FORMAT Null;
|
||||
|
||||
OPTIMIZE TABLE replace_partition_dest1_2 FINAL;
|
||||
OPTIMIZE TABLE replace_partition_dest2_2 FINAL;
|
||||
|
||||
SELECT sleep(3) FORMAT Null;
|
||||
SELECT sleep(3) FORMAT Null;
|
||||
SELECT sleep(3) FORMAT Null;
|
||||
SELECT sleep(3) FORMAT Null;
|
||||
SELECT sleep(3) FORMAT Null;
|
||||
|
||||
SELECT * FROM replace_partition_source;
|
||||
SELECT * FROM replace_partition_dest1;
|
||||
SELECT * FROM replace_partition_dest2;
|
||||
SELECT * FROM replace_partition_dest1_2;
|
||||
SELECT * FROM replace_partition_dest2_2;
|
||||
|
||||
|
||||
--DROP TABLE IF EXISTS replace_partition_source;
|
||||
--DROP TABLE IF EXISTS replace_partition_dest1;
|
||||
--DROP TABLE IF EXISTS replace_partition_dest1_2;
|
||||
--DROP TABLE IF EXISTS replace_partition_dest2;
|
||||
--DROP TABLE IF EXISTS replace_partition_dest2_2;
|
Loading…
Reference in New Issue
Block a user