Add CountMin to dictionary file and a little fixup

This commit is contained in:
JackyWoo 2024-09-09 17:34:15 +08:00
parent 077b8239f5
commit 6539cbd1ce
2 changed files with 18 additions and 0 deletions

View File

@ -991,6 +991,23 @@ They can be used for prewhere optimization only if we enable `set allow_statisti
### Available Types of Column Statistics {#available-types-of-column-statistics}
Names of statistics types are case-insensitive, i.e. both
``` sql
CREATE TABLE tab
(
a LowCardinality(Int64) STATISTICS(minmax)
) [...]
```
and
``` sql
CREATE TABLE tab
(
a LowCardinality(Int64) STATISTICS(MiNmAx)
) [...]
```
work.
- `MinMax`
The minimum and maximum column value which allows to estimate the selectivity of range filters on numeric columns.

View File

@ -120,6 +120,7 @@ CMPLNT
CMake
CMakeLists
CODECS
CountMin
COVID
CPUFrequencyMHz
CPUs