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
CREATE TABLE `unique_sync`
(
category_id Int64 NOT NULL,
id Int64,
name Utf8,
INDEX idx_global GLOBAL UNIQUE ON (category_id, id),
PRIMARY KEY (category_id)
)
Expected:
Query succesfully creates table with unique sync index
OR
Query returns an error
Current behavior:
Query succesfully creates table with non-unique sync index
The text was updated successfully, but these errors were encountered:
weres-sa
changed the title
UNIQUE clause is ignored for CREATE TABLE if SYNC cluase is not set
UNIQUE clause is ignored for CREATE TABLE if SYNC clause is not set
Mar 19, 2025
Way to reproduce:
Expected:
Query succesfully creates table with unique sync index
OR
Query returns an error
Current behavior:
Query succesfully creates table with non-unique sync index
The text was updated successfully, but these errors were encountered: