mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-13 19:14:30 +00:00
97f2a2213e
* Move some code outside dbms/src folder * Fix paths
47 lines
1.2 KiB
C++
47 lines
1.2 KiB
C++
#pragma once
|
|
|
|
#include <DataStreams/IBlockInputStream.h>
|
|
#include <Columns/FilterDescription.h>
|
|
|
|
|
|
namespace DB
|
|
{
|
|
|
|
class ExpressionActions;
|
|
|
|
|
|
/** Implements WHERE, HAVING operations.
|
|
* A stream of blocks and an expression, which adds to the block one ColumnUInt8 column containing the filtering conditions, are passed as input.
|
|
* The expression is evaluated and a stream of blocks is returned, which contains only the filtered rows.
|
|
*/
|
|
class FilterBlockInputStream : public IBlockInputStream
|
|
{
|
|
private:
|
|
using ExpressionActionsPtr = std::shared_ptr<ExpressionActions>;
|
|
|
|
public:
|
|
FilterBlockInputStream(const BlockInputStreamPtr & input, ExpressionActionsPtr expression_,
|
|
String filter_column_name_, bool remove_filter_ = false);
|
|
|
|
String getName() const override;
|
|
Block getTotals() override;
|
|
Block getHeader() const override;
|
|
|
|
protected:
|
|
Block readImpl() override;
|
|
|
|
bool remove_filter;
|
|
|
|
private:
|
|
ExpressionActionsPtr expression;
|
|
Block header;
|
|
String filter_column_name;
|
|
ssize_t filter_column;
|
|
|
|
ConstantFilterDescription constant_filter_description;
|
|
|
|
Block removeFilterIfNeed(Block && block);
|
|
};
|
|
|
|
}
|