Update reference file for tests

This commit is contained in:
JackyWoo 2024-08-06 10:29:42 +08:00
parent 46da03030c
commit 8259a9827e
2 changed files with 8 additions and 5 deletions

View File

@ -1021,18 +1021,17 @@ Note that all statistics types support `LowCardinality` and `Nullable` modifiers
| | Equals | Range |
|-----------|---------|-------|
| count_min | ✔ | |
| MinMax | | ✔ |
| TDigest | | ✔ |
| count_min | ✔ | |
| MinMax | | ✔ |
| TDigest | | ✔ |
| Uniq | ✔ | ✗ |
Please note that operation `Range` represents >, >=, < or <=.
## Column-level Settings {#column-level-settings}
Certain MergeTree settings can be override at column level:
Certain MergeTree settings can be overridden at column level:
- `max_compress_block_size` — Maximum size of blocks of uncompressed data before compressing for writing to a table.
- `min_compress_block_size` — Minimum size of blocks of uncompressed data required for compression when writing the next mark.

View File

@ -22,3 +22,7 @@ Test statistics multi-types:
Prewhere info
Prewhere filter
Prewhere filter column: and(equals(a, \'10000\'), equals(b, 0), less(c, 0), greater(d, _CAST(1, \'DateTime\'))) (removed)
Test statistics implicitly type conversion:
Prewhere info
Prewhere filter
Prewhere filter column: and(equals(a, \'10000\'), equals(d, \'2024-08-06 09:58:09\'), equals(c, \'0\'), greater(b, 0)) (removed)