mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-18 05:32:52 +00:00
59 lines
1.6 KiB
C++
59 lines
1.6 KiB
C++
#include <Interpreters/SubqueryForSet.h>
|
|
#include <Interpreters/InterpreterSelectWithUnionQuery.h>
|
|
#include <Interpreters/Join.h>
|
|
#include <Interpreters/MergeJoin.h>
|
|
#include <DataStreams/LazyBlockInputStream.h>
|
|
|
|
namespace DB
|
|
{
|
|
|
|
void SubqueryForSet::makeSource(std::shared_ptr<InterpreterSelectWithUnionQuery> & interpreter,
|
|
NamesWithAliases && joined_block_aliases_)
|
|
{
|
|
joined_block_aliases = std::move(joined_block_aliases_);
|
|
source = std::make_shared<LazyBlockInputStream>(interpreter->getSampleBlock(),
|
|
[interpreter]() mutable { return interpreter->execute().in; });
|
|
|
|
sample_block = source->getHeader();
|
|
renameColumns(sample_block);
|
|
}
|
|
|
|
void SubqueryForSet::renameColumns(Block & block)
|
|
{
|
|
for (const auto & name_with_alias : joined_block_aliases)
|
|
{
|
|
if (block.has(name_with_alias.first))
|
|
{
|
|
auto pos = block.getPositionByName(name_with_alias.first);
|
|
auto column = block.getByPosition(pos);
|
|
block.erase(pos);
|
|
column.name = name_with_alias.second;
|
|
block.insert(std::move(column));
|
|
}
|
|
}
|
|
}
|
|
|
|
void SubqueryForSet::setJoinActions(ExpressionActionsPtr actions)
|
|
{
|
|
actions->execute(sample_block);
|
|
joined_block_actions = actions;
|
|
}
|
|
|
|
bool SubqueryForSet::insertJoinedBlock(Block & block)
|
|
{
|
|
renameColumns(block);
|
|
|
|
if (joined_block_actions)
|
|
joined_block_actions->execute(block);
|
|
|
|
return join->addJoinedBlock(block);
|
|
}
|
|
|
|
void SubqueryForSet::setTotals()
|
|
{
|
|
if (join && source)
|
|
join->setTotals(source->getTotals());
|
|
}
|
|
|
|
}
|