ClickHouse/dbms/include/DB/DataStreams/DistinctBlockInputStream.h

47 lines
1.3 KiB
C++
Raw Normal View History

2013-06-01 07:43:57 +00:00
#pragma once
#include <DB/Common/HashTable/HashSet.h>
#include <DB/Common/SipHash.h>
#include <DB/Common/UInt128.h>
#include <DB/DataStreams/IProfilingBlockInputStream.h>
#include <DB/Interpreters/Limits.h>
2013-06-01 07:43:57 +00:00
namespace DB
{
/** Из потока блоков оставляет только уникальные строки.
* Для реализации SELECT DISTINCT ... .
* Если указан ненулевой limit - прекращает выдавать строки после того, как накопилось limit строк
* - для оптимизации SELECT DISTINCT ... LIMIT ... .
*/
class DistinctBlockInputStream : public IProfilingBlockInputStream
{
public:
/// Пустой columns_ значит все столбцы.
DistinctBlockInputStream(BlockInputStreamPtr input_, const Limits & limits, size_t limit_, Names columns_);
2013-06-01 07:43:57 +00:00
String getName() const override { return "Distinct"; }
2013-06-01 07:43:57 +00:00
String getID() const override;
2013-06-01 07:43:57 +00:00
protected:
Block readImpl() override;
private:
bool checkLimits() const;
Names columns_names;
2013-06-01 07:43:57 +00:00
size_t limit;
/// Ограничения на максимальный размер множества
size_t max_rows;
size_t max_bytes;
OverflowMode overflow_mode;
2013-06-01 07:43:57 +00:00
using SetHashed = HashSet<UInt128, UInt128TrivialHash>;
2013-06-01 07:43:57 +00:00
SetHashed set;
};
}