mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-21 07:01:59 +00:00
Merge pull request #72126 from ClickHouse/chesema-partition-sink
fix cancelation for PartitionedSink
This commit is contained in:
commit
999bff236c
@ -146,6 +146,12 @@ String PartitionedSink::replaceWildcards(const String & haystack, const String &
|
||||
return boost::replace_all_copy(haystack, PartitionedSink::PARTITION_ID_WILDCARD, partition_id);
|
||||
}
|
||||
|
||||
PartitionedSink::~PartitionedSink()
|
||||
{
|
||||
if (isCancelled())
|
||||
for (auto & item : partition_id_to_sink)
|
||||
item.second->cancel();
|
||||
}
|
||||
}
|
||||
|
||||
// NOLINTEND(clang-analyzer-optin.core.EnumCastOutOfRange)
|
||||
|
@ -18,6 +18,8 @@ public:
|
||||
|
||||
PartitionedSink(const ASTPtr & partition_by, ContextPtr context_, const Block & sample_block_);
|
||||
|
||||
~PartitionedSink() override;
|
||||
|
||||
String getName() const override { return "PartitionedSink"; }
|
||||
|
||||
void consume(Chunk & chunk) override;
|
||||
|
@ -230,6 +230,11 @@ void StorageJoin::mutate(const MutationCommands & commands, ContextPtr context)
|
||||
|
||||
disk->replaceFile(path + tmp_backup_file_name, path + std::to_string(increment) + ".bin");
|
||||
}
|
||||
else
|
||||
{
|
||||
compressed_backup_buf.cancel();
|
||||
backup_buf->cancel();
|
||||
}
|
||||
}
|
||||
|
||||
HashJoinPtr StorageJoin::getJoinLocked(std::shared_ptr<TableJoin> analyzed_join, ContextPtr context, const Names & required_columns_names) const
|
||||
|
Loading…
Reference in New Issue
Block a user