mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-23 16:12:01 +00:00
Update SelectStreamFactory.
This commit is contained in:
parent
a832a630d8
commit
71f746e01a
@ -131,7 +131,10 @@ void SelectStreamFactory::createForShard(
|
||||
if (!table_func_ptr)
|
||||
stream->setMainTable(main_table);
|
||||
|
||||
res.emplace_back(std::make_shared<SourceFromInputStream>(std::move(stream)));
|
||||
auto source = std::make_shared<SourceFromInputStream>(std::move(stream));
|
||||
source->addTotalsPort();
|
||||
|
||||
res.emplace_back(std::move(source));
|
||||
};
|
||||
|
||||
const auto & settings = context.getSettingsRef();
|
||||
@ -272,11 +275,8 @@ void SelectStreamFactory::createForShard(
|
||||
}
|
||||
};
|
||||
|
||||
auto add_totals = processed_stage == QueryProcessingStage::Complete;
|
||||
auto source = std::make_shared<SourceFromInputStream>("LazyShardWithLocalReplica", header, lazily_create_stream);
|
||||
|
||||
if (add_totals)
|
||||
source->addTotalsPort();
|
||||
source->addTotalsPort();
|
||||
|
||||
res.emplace_back(std::move(source));
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user