mirror of
https://github.com/GreptimeTeam/greptimedb.git
synced 2026-01-07 13:52:59 +00:00
* feat: add `granularity` and `false_positive_rate` options for indexes Signed-off-by: Zhenchi <zhongzc_arch@outlook.com> * address comments Signed-off-by: Zhenchi <zhongzc_arch@outlook.com> * upgrade proto Signed-off-by: Zhenchi <zhongzc_arch@outlook.com> --------- Signed-off-by: Zhenchi <zhongzc_arch@outlook.com>
19 lines
368 B
SQL
19 lines
368 B
SQL
create table
|
|
skipping_table (
|
|
ts timestamp time index,
|
|
`id` string skipping index,
|
|
`name` string skipping index
|
|
with
|
|
(
|
|
granularity = 8192,
|
|
false_positive_rate = 0.05,
|
|
type = 'BLOOM',
|
|
),
|
|
);
|
|
|
|
show
|
|
create table
|
|
skipping_table;
|
|
|
|
drop table skipping_table;
|