mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-27 01:51:59 +00:00
Update MergeTreeData.cpp
This commit is contained in:
parent
3f892ceb12
commit
486153d581
@ -1081,7 +1081,7 @@ void MergeTreeData::PartLoadingTree::add(const MergeTreePartInfo & info, const S
|
||||
else if (!prev_info.isDisjoint(info))
|
||||
{
|
||||
throw Exception(ErrorCodes::LOGICAL_ERROR,
|
||||
"Part {} intersects previous part {}. It is a bug!",
|
||||
"Part {} intersects previous part {}. It is a bug or a result of manual intervention in the server or ZooKeeper data",
|
||||
name, prev->second->name);
|
||||
}
|
||||
}
|
||||
@ -1098,7 +1098,7 @@ void MergeTreeData::PartLoadingTree::add(const MergeTreePartInfo & info, const S
|
||||
else if (!next_info.isDisjoint(info))
|
||||
{
|
||||
throw Exception(ErrorCodes::LOGICAL_ERROR,
|
||||
"Part {} intersects next part {}. It is a bug!",
|
||||
"Part {} intersects next part {}. It is a bug or a result of manual intervention in the server or ZooKeeper data",
|
||||
name, it->second->name);
|
||||
}
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user