Files
greptimedb/tests/compatibility/2.verify/distributed/common/show-create-table.result
discord9 cb02f960cd fix: use etcd
Signed-off-by: discord9 <discord9@163.com>
2026-03-10 15:35:50 +08:00

19 lines
1.7 KiB
Plaintext

SHOW CREATE TABLE granularity_and_false_positive_rate;
+-------------------------------------+--------------------------------------------------------------------+
| Table | Create Table |
+-------------------------------------+--------------------------------------------------------------------+
| granularity_and_false_positive_rate | CREATE TABLE IF NOT EXISTS "granularity_and_false_positive_rate" ( |
| | "ts" TIMESTAMP(3) NOT NULL, |
| | "val" DOUBLE NULL, |
| | TIME INDEX ("ts") |
| | ) |
| | |
| | ENGINE=mito |
| | WITH( |
| | 'index.false_positive_rate' = '0.01', |
| | 'index.granularity' = '8192' |
| | ) |
+-------------------------------------+--------------------------------------------------------------------+