mirror of
https://github.com/GreptimeTeam/greptimedb.git
synced 2026-01-05 21:02:58 +00:00
* basic impl Signed-off-by: Ruihang Xia <waynestxia@gmail.com> * more tests Signed-off-by: Ruihang Xia <waynestxia@gmail.com> * sqlness test Signed-off-by: Ruihang Xia <waynestxia@gmail.com> * fix clippy Signed-off-by: Ruihang Xia <waynestxia@gmail.com> * update with more test and logs Signed-off-by: Ruihang Xia <waynestxia@gmail.com> * impl Signed-off-by: Ruihang Xia <waynestxia@gmail.com> * impl merge fn Signed-off-by: Ruihang Xia <waynestxia@gmail.com> * rename function names Signed-off-by: Ruihang Xia <waynestxia@gmail.com> --------- Signed-off-by: Ruihang Xia <waynestxia@gmail.com>
50 lines
961 B
SQL
50 lines
961 B
SQL
CREATE TABLE test_hll (
|
|
`id` INT PRIMARY KEY,
|
|
`value` STRING,
|
|
`ts` timestamp time index default now()
|
|
);
|
|
|
|
INSERT INTO test_hll (`id`, `value`) VALUES
|
|
(1, "a"),
|
|
(2, "b"),
|
|
(5, "e"),
|
|
(6, "f"),
|
|
(7, "g"),
|
|
(8, "h"),
|
|
(9, "i"),
|
|
(10, "j"),
|
|
(11, "i"),
|
|
(12, "j"),
|
|
(13, "i"),
|
|
(14, "n"),
|
|
(15, "o");
|
|
|
|
select hll_count(hll(`value`)) from test_hll;
|
|
|
|
INSERT INTO test_hll (`id`, `value`) VALUES
|
|
(16, "b"),
|
|
(17, "i"),
|
|
(18, "j"),
|
|
(19, "s"),
|
|
(20, "t");
|
|
|
|
select hll_count(hll(`value`)) from test_hll;
|
|
|
|
create table test_hll_merge (
|
|
`id` INT PRIMARY KEY,
|
|
`state` BINARY,
|
|
`ts` timestamp time index default now()
|
|
);
|
|
|
|
insert into test_hll_merge (`id`, `state`)
|
|
select 1, hll(`value`) from test_hll;
|
|
|
|
insert into test_hll_merge (`id`, `state`)
|
|
select 2, hll(`value`) from test_hll;
|
|
|
|
select hll_count(hll_merge(`state`)) from test_hll_merge;
|
|
|
|
drop table test_hll;
|
|
|
|
drop table test_hll_merge;
|