mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-17 13:13:36 +00:00
40 lines
884 B
C++
40 lines
884 B
C++
#include <Interpreters/ExpressionActions.h>
|
|
#include <DataStreams/ExpressionBlockInputStream.h>
|
|
|
|
|
|
namespace DB
|
|
{
|
|
|
|
ExpressionBlockInputStream::ExpressionBlockInputStream(const BlockInputStreamPtr & input, const ExpressionActionsPtr & expression_)
|
|
: expression(expression_)
|
|
{
|
|
children.push_back(input);
|
|
cached_header = children.back()->getHeader();
|
|
expression->execute(cached_header, true);
|
|
}
|
|
|
|
String ExpressionBlockInputStream::getName() const { return "Expression"; }
|
|
|
|
Block ExpressionBlockInputStream::getTotals()
|
|
{
|
|
totals = children.back()->getTotals();
|
|
expression->execute(totals);
|
|
|
|
return totals;
|
|
}
|
|
|
|
Block ExpressionBlockInputStream::getHeader() const
|
|
{
|
|
return cached_header.cloneEmpty();
|
|
}
|
|
|
|
Block ExpressionBlockInputStream::readImpl()
|
|
{
|
|
Block res = children.back()->read();
|
|
if (res)
|
|
expression->execute(res);
|
|
return res;
|
|
}
|
|
|
|
}
|