ClickHouse/dbms/src/Processors/LimitTransform.h

48 lines
1.1 KiB
C++
Raw Normal View History

#pragma once
#include <Processors/IProcessor.h>
namespace DB
{
class LimitTransform : public IProcessor
{
private:
InputPort & input;
OutputPort & output;
size_t limit;
size_t offset;
size_t rows_read = 0; /// including the last read block
bool always_read_till_end;
2019-02-07 18:51:53 +00:00
bool has_block = false;
bool block_processed = false;
Chunk current_chunk;
2019-04-08 14:55:20 +00:00
UInt64 rows_before_limit_at_least = 0;
2019-04-09 10:17:25 +00:00
/// Do we need calculate rows_before_limit_at_least value?
/// Used to skip total row when count rows_before_limit_at_least.
bool do_count_rows_before_limit;
public:
2019-04-09 10:17:25 +00:00
LimitTransform(
2019-04-11 14:51:25 +00:00
const Block & header, size_t limit, size_t offset,
2019-04-09 10:17:25 +00:00
bool always_read_till_end = false,
bool do_count_rows_before_limit = true);
String getName() const override { return "Limit"; }
Status prepare() override;
void work() override;
InputPort & getInputPort() { return input; }
OutputPort & getOutputPort() { return output; }
2019-04-08 14:55:20 +00:00
UInt64 getRowsBeforeLimitAtLeast() const { return rows_before_limit_at_least; }
};
}