ClickHouse MODIFY|RESET syntax: ``` ALTER TABLE [db].name [ON CLUSTER cluster] MODIFY|RESET SETTING ... ``` Example: ``` ALTER TABLE example_table MODIFY SETTING max_part_loading_threads=8, max_parts_in_total=50000; ALTER TABLE example_table RESET SETTING max_part_loading_threads; ``` Remember to use `make update_test` to update test cases. Reuse existing code as much as possible.