Files
greptimedb/tests/cases/standalone/common/create/create_with_skipping_index.sql
Zhenchi 599f289f59 feat: add granularity and false_positive_rate options for indexes (#6416)
* 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>
2025-07-02 07:33:39 +00:00

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;