mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-21 15:12:02 +00:00
Merge pull request #41068 from jthmath/bugfix
fix ignore projection logic error
This commit is contained in:
commit
12e7cd6b19
@ -1302,7 +1302,7 @@ private:
|
||||
*ctx->source_part->data_part_storage, it->name(), destination);
|
||||
hardlinked_files.insert(it->name());
|
||||
}
|
||||
else if (!endsWith(".tmp_proj", it->name())) // ignore projection tmp merge dir
|
||||
else if (!endsWith(it->name(), ".tmp_proj")) // ignore projection tmp merge dir
|
||||
{
|
||||
// it's a projection part directory
|
||||
ctx->data_part_storage_builder->createProjection(destination);
|
||||
|
Loading…
Reference in New Issue
Block a user