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
Currently, we error out when users try to create UNIQUE indexes on distributed tables. However, we can allow users to create indexes on partition columns for HASH and RANGE distributed tables.
The text was updated successfully, but these errors were encountered:
I think we should somehow unify the checks on create index and create table when considering the add this feature. Basically, there should be a single function which checks all these uniqeness constraints.
@sumedhpathak are we sure about enabling unique on range partitioned tables ? AFAIK we could not enforce disjointness on the range tables since one can create shards with overlapping ranges.
@mtuncer But don't we have that assumption for all functionalities of range tables? Don't we expect the users to ensure that shards are non-overlapping for range partitioned tables?
Currently, we error out when users try to create UNIQUE indexes on distributed tables. However, we can allow users to create indexes on partition columns for HASH and RANGE distributed tables.
The text was updated successfully, but these errors were encountered: