v.1.1.54362New Feature
Using MergeTree Tables Without a Primary Key
MergeTreetables can be used without a primary key (you need to specifyORDER BY tuple()).
Why it matters
This feature allows users to createMergeTree tables without defining a primary key, providing more flexibility in table design when the primary key is not needed or desired.How to use it
To create aMergeTree table without a primary key, use ORDER BY tuple() in the table definition, for example:CREATE TABLE example_table (
id UInt32,
value String
) ENGINE = MergeTree()
ORDER BY tuple()