Update docs/en/operations/settings/merge-tree-settings.md

Co-authored-by: Alexander Tokmakov <tavplubix@clickhouse.com>
This commit is contained in:
Igor Nikonov 2023-01-24 16:52:32 +01:00 committed by GitHub
parent 21b009fdec
commit e585a1228f
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -113,7 +113,7 @@ k = 1 + parts_count_in_partition - parts_to_delay_insert
delay_milliseconds = pow(max_delay_to_insert * 1000, k / max_k)
```
Starting version 23.1 formula has been changed to:
Starting from version 23.1 formula has been changed to:
```code
allowed_parts_over_threshold = parts_to_throw_insert - parts_to_delay_insert + 1
parts_over_threshold = parts_count_in_partition - parts_to_delay_insert + 1