blob: 5e6d7dc816a676b320ebb37b29a43efe5a141be2 (
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
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
|
#include <Processors/Transforms/LimitByTransform.h>
#include <Common/PODArray.h>
#include <Common/SipHash.h>
namespace DB
{
LimitByTransform::LimitByTransform(const Block & header, UInt64 group_length_, UInt64 group_offset_, const Names & columns)
: ISimpleTransform(header, header, true)
, group_length(group_length_)
, group_offset(group_offset_)
{
key_positions.reserve(columns.size());
for (const auto & name : columns)
{
auto position = header.getPositionByName(name);
const auto & column = header.getByPosition(position).column;
/// Ignore all constant columns.
if (!(column && isColumnConst(*column)))
key_positions.emplace_back(position);
}
}
void LimitByTransform::transform(Chunk & chunk)
{
UInt64 num_rows = chunk.getNumRows();
auto columns = chunk.detachColumns();
IColumn::Filter filter(num_rows);
UInt64 inserted_count = 0;
for (UInt64 row = 0; row < num_rows; ++row)
{
SipHash hash;
for (auto position : key_positions)
columns[position]->updateHashWithValue(row, hash);
const auto key = hash.get128();
auto count = keys_counts[key]++;
if (count >= group_offset
&& (group_length > std::numeric_limits<UInt64>::max() - group_offset || count < group_length + group_offset))
{
++inserted_count;
filter[row] = 1;
}
else
filter[row] = 0;
}
/// Just go to the next block if there isn't any new records in the current one.
if (!inserted_count)
/// SimpleTransform will skip it.
return;
if (inserted_count < num_rows)
{
for (auto & column : columns)
if (isColumnConst(*column))
column = column->cut(0, inserted_count);
else
column = column->filter(filter, inserted_count);
}
chunk.setColumns(std::move(columns), inserted_count);
}
}
|