mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-10 09:32:06 +00:00
Merge pull request #39601 from ClickHouse/fix-chain-add-sink
Fix Chain::addSink
This commit is contained in:
commit
908c1d8cba
@ -96,7 +96,7 @@ void Chain::addSink(ProcessorPtr processor)
|
||||
if (!processors.empty())
|
||||
connect(getOutputPort(), processor->getInputs().front());
|
||||
|
||||
processors.emplace_front(std::move(processor));
|
||||
processors.emplace_back(std::move(processor));
|
||||
}
|
||||
|
||||
IProcessor & Chain::getSource()
|
||||
|
Loading…
Reference in New Issue
Block a user