v.1.1.54394New Feature
OPTIMIZE TABLE ... FINAL Now Available for ReplicatedMergeTree Without Partitions
NowOPTIMIZE TABLE ... FINALcan be used without specifying partitions forReplicatedMergeTree(Amos Bird).
Why it matters
Previously, users had to specify partition names when runningOPTIMIZE TABLE ... FINAL on ReplicatedMergeTree tables. This feature simplifies the optimization process by allowing a full final optimization across all partitions without manual partition specification, reducing user effort and potential errors.How to use it
Simply run theOPTIMIZE TABLE table_name FINAL command on a ReplicatedMergeTree table without specifying any partitions. ClickHouse will perform the final merges across all partitions automatically.