blob: 8c2b46af69ef914b9573f5e7d3fce4a8509d19f7 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
|
#pragma once
#include <Processors/ISimpleTransform.h>
#include <Common/HashTable/HashMap.h>
namespace DB
{
/// Executes LIMIT BY for specified columns.
class LimitByTransform : public ISimpleTransform
{
public:
LimitByTransform(const Block & header, UInt64 group_length_, UInt64 group_offset_, const Names & columns);
String getName() const override { return "LimitByTransform"; }
protected:
void transform(Chunk & chunk) override;
private:
using MapHashed = HashMap<UInt128, UInt64, UInt128TrivialHash>;
MapHashed keys_counts;
std::vector<size_t> key_positions;
const UInt64 group_length;
const UInt64 group_offset;
};
}
|