mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-25 00:52:02 +00:00
Fixed strange whitespaces
This commit is contained in:
parent
a0f2940cb1
commit
de5f559304
@ -253,7 +253,6 @@ StorageReplicatedMergeTree::StorageReplicatedMergeTree(
|
|||||||
metadata_version = metadata_stat.version;
|
metadata_version = metadata_stat.version;
|
||||||
|
|
||||||
createReplica();
|
createReplica();
|
||||||
|
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
{
|
{
|
||||||
@ -299,7 +298,6 @@ void StorageReplicatedMergeTree::waitMutationToFinishOnReplicas(
|
|||||||
|
|
||||||
zkutil::EventPtr wait_event = std::make_shared<Poco::Event>();
|
zkutil::EventPtr wait_event = std::make_shared<Poco::Event>();
|
||||||
|
|
||||||
|
|
||||||
std::set<String> inactive_replicas;
|
std::set<String> inactive_replicas;
|
||||||
for (const String & replica : replicas)
|
for (const String & replica : replicas)
|
||||||
{
|
{
|
||||||
@ -4518,18 +4516,18 @@ void StorageReplicatedMergeTree::mutate(const MutationCommands & commands, const
|
|||||||
|
|
||||||
void StorageReplicatedMergeTree::waitMutation(const String & znode_name, size_t mutations_sync) const
|
void StorageReplicatedMergeTree::waitMutation(const String & znode_name, size_t mutations_sync) const
|
||||||
{
|
{
|
||||||
auto zookeeper = getZooKeeper();
|
if (!mutations_sync)
|
||||||
/// we have to wait
|
return;
|
||||||
if (mutations_sync != 0)
|
|
||||||
{
|
|
||||||
Strings replicas;
|
|
||||||
if (mutations_sync == 2) /// wait for all replicas
|
|
||||||
replicas = zookeeper->getChildren(zookeeper_path + "/replicas");
|
|
||||||
else if (mutations_sync == 1) /// just wait for ourself
|
|
||||||
replicas.push_back(replica_name);
|
|
||||||
|
|
||||||
waitMutationToFinishOnReplicas(replicas, znode_name);
|
/// we have to wait
|
||||||
}
|
auto zookeeper = getZooKeeper();
|
||||||
|
Strings replicas;
|
||||||
|
if (mutations_sync == 2) /// wait for all replicas
|
||||||
|
replicas = zookeeper->getChildren(zookeeper_path + "/replicas");
|
||||||
|
else if (mutations_sync == 1) /// just wait for ourself
|
||||||
|
replicas.push_back(replica_name);
|
||||||
|
|
||||||
|
waitMutationToFinishOnReplicas(replicas, znode_name);
|
||||||
}
|
}
|
||||||
|
|
||||||
std::vector<MergeTreeMutationStatus> StorageReplicatedMergeTree::getMutationsStatus() const
|
std::vector<MergeTreeMutationStatus> StorageReplicatedMergeTree::getMutationsStatus() const
|
||||||
|
Loading…
Reference in New Issue
Block a user