Merge pull request #33459 from den-crane/patch-57

Doc. ALTER TABLE RESET SETTING example
This commit is contained in:
Maksim Kita 2022-01-07 22:58:18 +03:00 committed by GitHub
commit c7f525d022
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -27,6 +27,10 @@ An example of changing the settings for a specific table with the `ALTER TABLE .
``` sql
ALTER TABLE foo
MODIFY SETTING max_suspicious_broken_parts = 100;
-- reset to default (use value from system.merge_tree_settings)
ALTER TABLE foo
RESET SETTING max_suspicious_broken_parts;
```
## parts_to_throw_insert {#parts-to-throw-insert}