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
Summary:
DocDB layer knows nothing about postgres schemas. This information in stored only in postgres sys catalog.
It is enough to allow the `ALTER SCHEMA RENAME` command on parser level to support schema reaming.
Test Plan:
postgres's regress test `namespace.sql` was integrated as `yb_pg_namespace.sql`
```
./yb_build.sh --java-test 'org.yb.pgsql.TestPgRegressPgMiscIndependent'
```
Reviewers: alex, mihnea
Reviewed By: mihnea
Subscribers: yql
Differential Revision: https://phabricator.dev.yugabyte.com/D12387
Summary:
DocDB layer knows nothing about postgres schemas. This information in stored only in postgres sys catalog.
It is enough to allow the `ALTER SCHEMA RENAME` command on parser level to support schema reaming.
Original commit: D12387 / 39b2b6b
Test Plan:
Jenkins: rebase: 2.6
postgres's regress test `namespace.sql` was integrated as `yb_pg_namespace.sql`
```
./yb_build.sh --java-test 'org.yb.pgsql.TestPgRegressPgMiscIndependent'
```
Reviewers: alex, mihnea
Reviewed By: mihnea
Subscribers: yql
Differential Revision: https://phabricator.dev.yugabyte.com/D12471
As a user, I would like to be able to rename a schema (namespace) once it has been created. Postgres supports this via
ALTER SCHEMA foo RENAME TO blah;
The text was updated successfully, but these errors were encountered: