mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-22 23:52:03 +00:00
Fixed "No part error" in replicated sender. [#CLICKHOUSE-3178]
This commit is contained in:
parent
397b8bcf92
commit
483dfd1b44
@ -157,10 +157,13 @@ void Service::processQuery(const Poco::Net::HTMLForm & params, ReadBuffer & body
|
||||
|
||||
MergeTreeData::DataPartPtr Service::findPart(const String & name)
|
||||
{
|
||||
MergeTreeData::DataPartPtr part = data.getPartIfExists(name);
|
||||
/// It is important to include PreCommitted parts here
|
||||
/// Because part could be actually committed into ZooKeeper, but response from ZooKeeper to the server could be delayed
|
||||
auto part = data.getPartIfExists(name, {MergeTreeDataPart::State::PreCommitted, MergeTreeDataPart::State::Committed});
|
||||
if (part)
|
||||
return part;
|
||||
throw Exception("No part " + name + " in table");
|
||||
|
||||
throw Exception("No part " + name + " in table", ErrorCodes::NO_SUCH_DATA_PART);
|
||||
}
|
||||
|
||||
MergeTreeData::DataPartPtr Service::findShardedPart(const String & name, size_t shard_no)
|
||||
|
Loading…
Reference in New Issue
Block a user