Merge pull request #4772 from yandex/fix-force-recheck-parts

Recheck parts in ReplicatedMergeTreeAlterThread in case of error
This commit is contained in:
alexey-milovidov 2019-03-23 04:22:55 +03:00 committed by GitHub
commit 69340528ff
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 1 additions and 2 deletions

View File

@ -33,8 +33,6 @@ ReplicatedMergeTreeAlterThread::ReplicatedMergeTreeAlterThread(StorageReplicated
void ReplicatedMergeTreeAlterThread::run()
{
bool force_recheck_parts = true;
try
{
/** We have a description of columns in ZooKeeper, common for all replicas (Example: /clickhouse/tables/02-06/visits/columns),

View File

@ -36,6 +36,7 @@ private:
String log_name;
Logger * log;
BackgroundSchedulePool::TaskHolder task;
bool force_recheck_parts = true;
};
}