mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-11 18:14:03 +00:00
54 lines
1.4 KiB
C++
54 lines
1.4 KiB
C++
#pragma once
|
|
|
|
#include <Poco/SharedPtr.h>
|
|
|
|
#include <DB/Interpreters/Expression.h>
|
|
#include <DB/DataStreams/IProfilingBlockInputStream.h>
|
|
|
|
|
|
namespace DB
|
|
{
|
|
|
|
using Poco::SharedPtr;
|
|
|
|
|
|
/** Выбирает из блока только столбцы, являющиеся результатом вычисления выражения.
|
|
* Следует применять после ExpressionBlockInputStream.
|
|
*/
|
|
class ProjectionBlockInputStream : public IProfilingBlockInputStream
|
|
{
|
|
public:
|
|
ProjectionBlockInputStream(
|
|
BlockInputStreamPtr input_,
|
|
SharedPtr<Expression> expression_,
|
|
bool without_duplicates_and_aliases_ = false,
|
|
unsigned part_id_ = 0,
|
|
ASTPtr subtree_ = NULL)
|
|
: input(input_), expression(expression_), without_duplicates_and_aliases(without_duplicates_and_aliases_), part_id(part_id_), subtree(subtree_)
|
|
{
|
|
children.push_back(input);
|
|
}
|
|
|
|
Block readImpl()
|
|
{
|
|
Block res = input->read();
|
|
if (!res)
|
|
return res;
|
|
|
|
return expression->projectResult(res, without_duplicates_and_aliases, part_id, subtree);
|
|
}
|
|
|
|
String getName() const { return "ProjectionBlockInputStream"; }
|
|
|
|
BlockInputStreamPtr clone() { return new ProjectionBlockInputStream(input, expression, without_duplicates_and_aliases, part_id, subtree); }
|
|
|
|
private:
|
|
BlockInputStreamPtr input;
|
|
SharedPtr<Expression> expression;
|
|
bool without_duplicates_and_aliases;
|
|
unsigned part_id;
|
|
ASTPtr subtree;
|
|
};
|
|
|
|
}
|