You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: docs/en/engines/table-engines/mergetree-family/mergetree.md
+3-3Lines changed: 3 additions & 3 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -993,11 +993,11 @@ They can be used for prewhere optimization only if we enable `set allow_statisti
993
993
994
994
-`TDigest`
995
995
996
-
Stores distribution of values from numeric columns in [TDigest](https://github.com/tdunning/t-digest)sketch.
996
+
[TDigest](https://github.com/tdunning/t-digest)sketches which allow to compute approximate percentiles (e.g. the 90th percentile) for numeric columns.
997
997
998
998
-`Uniq`
999
-
1000
-
Estimate the number of distinct values of a column by HyperLogLog.
999
+
1000
+
[HyperLogLog](https://en.wikipedia.org/wiki/HyperLogLog) sketches which provide an estimation how many distinct values a column contains.
Copy file name to clipboardExpand all lines: docs/en/sql-reference/statements/alter/statistics.md
+1-1Lines changed: 1 addition & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -28,6 +28,6 @@ There is an example adding two statistics types to two columns:
28
28
ALTER TABLE t1 MODIFY STATISTICS c, d TYPE TDigest, Uniq;
29
29
```
30
30
31
-
:::note
31
+
:::note
32
32
Statistic manipulation is supported only for tables with [`*MergeTree`](../../../engines/table-engines/mergetree-family/mergetree.md) engine (including [replicated](../../../engines/table-engines/mergetree-family/replication.md) variants).
0 commit comments