v.1.1.54390New Feature
OPTIMIZE TABLE ... FINAL Now Usable Without Partition for Non-Replicated MergeTree
NowOPTIMIZE TABLE ... FINALcan be used without specifying the partition for non-replicated variants ofMergeTree(Amos Bird).
Why it matters
Previously, users had to specify a partition when usingOPTIMIZE TABLE ... FINAL on non-replicated MergeTree tables, which was less convenient. This feature simplifies the process by allowing optimization of the entire table in one command, improving usability and maintenance workflows.How to use it
Simply run the command:OPTIMIZE TABLE [table_name] FINAL;without specifying any partition. This works for non-replicated
MergeTree table engines.