Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat(postgresql): Add ALTER VIEW ... SET SCHEMA #2855

Merged
merged 3 commits into from
Oct 13, 2023

Conversation

kyleconroy
Copy link
Collaborator

Fixes #1519

@@ -236,7 +236,7 @@ func translate(node *nodes.Node) (ast.Node, error) {
n := inner.AlterObjectSchemaStmt
switch n.ObjectType {

case nodes.ObjectType_OBJECT_TABLE:
case nodes.ObjectType_OBJECT_TABLE, nodes.ObjectType_OBJECT_VIEW, nodes.ObjectType_OBJECT_MATVIEW:
Copy link
Collaborator Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Internally, the sqlc catalog stores views and materialized views as tables.

@kyleconroy kyleconroy merged commit f9bbfd9 into main Oct 13, 2023
8 checks passed
@kyleconroy kyleconroy deleted the kyle/ddl-materialized-views-set-schema branch October 13, 2023 23:16
This pull request was closed.
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

Materialized Views don't support schema migrations
1 participant