You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Hi.
While doing migrations (Symfony5) and perform table creation I get now:
HttpCode:500 ; ;Code: 36. DB::Exception: This syntax for *MergeTree engine is deprecated. Use extended storage definition syntax with ORDER BY/PRIMARY KEY clause.See
also allow_deprecated_syntax_for_merge_tree setting. (BAD_ARGUMENTS) (version 22.7.2.15 (official build))
The text was updated successfully, but these errors were encountered:
I use the ORM to generate a create statement for me.
CREATE TABLE offer_price_history (EventDate Date DEFAULT today(), id String, price Int32) ENGINE = ReplacingMergeTree(EventDate, (id), 8192);```
And it errors
This syntax for *MergeTree engine is deprecated. Use extended storage definition syntax with ORDER BY/PRIMARY KEY clause. See also `allow_deprecated_syntax_for_merge_tree` setting. (BAD_ARGUMENTS)
IN:CREATE TABLE offer_price_history (EventDate Date DEFAULT today(), id String, price Int32) ENGINE = ReplacingMergeTree(EventDate, (id), 8192)
Hi.
While doing migrations (Symfony5) and perform table creation I get now:
HttpCode:500 ; ;Code: 36. DB::Exception: This syntax for *MergeTree engine is deprecated. Use extended storage definition syntax with ORDER BY/PRIMARY KEY clause.See
also allow_deprecated_syntax_for_merge_tree setting. (BAD_ARGUMENTS) (version 22.7.2.15 (official build))
The text was updated successfully, but these errors were encountered: