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 has a SPLIT INTO clause to support specifying the number of tablets that are created for the table. We also need to support this in CREATE INDEX statement.
The text was updated successfully, but these errors were encountered:
Summary:
Extended the Postgres grammar to allow for SPLIT INTO # TABLETS in CREATE INDEX DDL
statments. Adding functionality for SPLIT AT is a WIP.
Test Plan:
Using yb-ctl performed CREATE INDEX ... SPLIT INTO # TABLETS. Confirmed using web UI.
Added to the TestPgRegressindex.java test:
```
./yb_build.sh release --java-test org.yb.pgsql.TestPgRegressIndex
```
Reviewers: neha, dmitry
Reviewed By: dmitry
Subscribers: yql
Differential Revision: https://phabricator.dev.yugabyte.com/D8583
CREATE TABLE
has aSPLIT INTO
clause to support specifying the number of tablets that are created for the table. We also need to support this inCREATE INDEX
statement.The text was updated successfully, but these errors were encountered: