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
Right now indexes by default follow the tablegroup of the indexed table. Allow at a grammar level for CREATE INDEX to opt an index out of a tablegroup and create its own tablet(s).
The text was updated successfully, but these errors were encountered:
…elect their own tablegroup.
Summary:
There are three options now available for index creation with tablegroups:
(1) Index by default follows the tablegroup of its indexed table.
(2) Usage of `NO TABLEGROUP` allows for an index to opt out of the tablegroup of its indexed table and instead create its own tablet(s)
(3) Usage of `TABLEGROUP group_name` allows for the index to be placed in the specified tablegroup, which does not need to be that of its indexed table.
Test Plan:
```
./yb_build.sh --java-test org.yb.pgsql.TestPgRegressTablegroup
```
Reviewers: neha, jason
Reviewed By: jason
Subscribers: yql
Differential Revision: https://phabricator.dev.yugabyte.com/D9077
Right now indexes by default follow the tablegroup of the indexed table. Allow at a grammar level for CREATE INDEX to opt an index out of a tablegroup and create its own tablet(s).
The text was updated successfully, but these errors were encountered: