mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-21 15:12:02 +00:00
Added groupArrayArray and groupUniqArrayArray to SimpleAggregateFunction
This commit is contained in:
parent
f53da4d36b
commit
713f8f0b22
@ -30,7 +30,7 @@ namespace ErrorCodes
|
|||||||
extern const int LOGICAL_ERROR;
|
extern const int LOGICAL_ERROR;
|
||||||
}
|
}
|
||||||
|
|
||||||
static const std::vector<String> supported_functions{"any", "anyLast", "min", "max", "sum", "groupBitAnd", "groupBitOr", "groupBitXor", "sumMap"};
|
static const std::vector<String> supported_functions{"any", "anyLast", "min", "max", "sum", "groupBitAnd", "groupBitOr", "groupBitXor", "sumMap", "groupArrayArray", "groupUniqArrayArray"};
|
||||||
|
|
||||||
|
|
||||||
String DataTypeCustomSimpleAggregateFunction::getName() const
|
String DataTypeCustomSimpleAggregateFunction::getName() const
|
||||||
|
@ -39,6 +39,6 @@ SimpleAggregateFunction(sum, Float64)
|
|||||||
7 14
|
7 14
|
||||||
8 16
|
8 16
|
||||||
9 18
|
9 18
|
||||||
1 1 2 2.2.2.2 3 ([1,2,3],[2,1,1])
|
1 1 2 2.2.2.2 3 ([1,2,3],[2,1,1]) [1,2,2,3,4] [4,2,1,3]
|
||||||
10 2222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222 20 20.20.20.20 5 ([2,3,4],[2,1,1])
|
10 2222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222 20 20.20.20.20 5 ([2,3,4],[2,1,1]) [] []
|
||||||
SimpleAggregateFunction(anyLast, Nullable(String)) SimpleAggregateFunction(anyLast, LowCardinality(Nullable(String))) SimpleAggregateFunction(anyLast, IPv4) SimpleAggregateFunction(groupBitOr, UInt32) SimpleAggregateFunction(sumMap, Tuple(Array(Int32), Array(Int64)))
|
SimpleAggregateFunction(anyLast, Nullable(String)) SimpleAggregateFunction(anyLast, LowCardinality(Nullable(String))) SimpleAggregateFunction(anyLast, IPv4) SimpleAggregateFunction(groupBitOr, UInt32) SimpleAggregateFunction(sumMap, Tuple(Array(Int32), Array(Int64))) SimpleAggregateFunction(groupArrayArray, Array(Int32)) SimpleAggregateFunction(groupUniqArrayArray, Array(Int32))
|
||||||
|
@ -25,16 +25,18 @@ create table simple (
|
|||||||
low_str SimpleAggregateFunction(anyLast,LowCardinality(Nullable(String))),
|
low_str SimpleAggregateFunction(anyLast,LowCardinality(Nullable(String))),
|
||||||
ip SimpleAggregateFunction(anyLast,IPv4),
|
ip SimpleAggregateFunction(anyLast,IPv4),
|
||||||
status SimpleAggregateFunction(groupBitOr, UInt32),
|
status SimpleAggregateFunction(groupBitOr, UInt32),
|
||||||
tup SimpleAggregateFunction(sumMap, Tuple(Array(Int32), Array(Int64)))
|
tup SimpleAggregateFunction(sumMap, Tuple(Array(Int32), Array(Int64))),
|
||||||
|
arr SimpleAggregateFunction(groupArrayArray, Array(Int32)),
|
||||||
|
uniq_arr SimpleAggregateFunction(groupUniqArrayArray, Array(Int32))
|
||||||
) engine=AggregatingMergeTree order by id;
|
) engine=AggregatingMergeTree order by id;
|
||||||
insert into simple values(1,'1','1','1.1.1.1', 1, ([1,2], [1,1]));
|
insert into simple values(1,'1','1','1.1.1.1', 1, ([1,2], [1,1]), [1,2], [1,2]);
|
||||||
insert into simple values(1,null,'2','2.2.2.2', 2, ([1,3], [1,1]));
|
insert into simple values(1,null,'2','2.2.2.2', 2, ([1,3], [1,1]), [2,3,4], [2,3,4]);
|
||||||
-- String longer then MAX_SMALL_STRING_SIZE (actual string length is 100)
|
-- String longer then MAX_SMALL_STRING_SIZE (actual string length is 100)
|
||||||
insert into simple values(10,'10','10','10.10.10.10', 4, ([2,3], [1,1]));
|
insert into simple values(10,'10','10','10.10.10.10', 4, ([2,3], [1,1]), [], []);
|
||||||
insert into simple values(10,'2222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222','20','20.20.20.20', 1, ([2, 4], [1,1]));
|
insert into simple values(10,'2222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222','20','20.20.20.20', 1, ([2, 4], [1,1]), [], []);
|
||||||
|
|
||||||
select * from simple final order by id;
|
select * from simple final order by id;
|
||||||
select toTypeName(nullable_str),toTypeName(low_str),toTypeName(ip),toTypeName(status), toTypeName(tup) from simple limit 1;
|
select toTypeName(nullable_str),toTypeName(low_str),toTypeName(ip),toTypeName(status), toTypeName(tup), toTypeName(arr), toTypeName(uniq_arr) from simple limit 1;
|
||||||
|
|
||||||
optimize table simple final;
|
optimize table simple final;
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user