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

Can't rename table with schema specified on PostgreSQL #32

Closed
sqlalchemy-bot opened this issue Feb 17, 2012 · 7 comments
Closed

Can't rename table with schema specified on PostgreSQL #32

sqlalchemy-bot opened this issue Feb 17, 2012 · 7 comments
Labels
bug Something isn't working

Comments

@sqlalchemy-bot
Copy link

Migrated issue, originally created by Dmitriy Bogomolov (@dvbogomolov)

op.rename_table('a', 'b', 'my_schema') gives invalid DDL:
ALTER TABLE my_schema.a RENAME TO my_schema.b

Valid DDL is: ALTER TABLE my_schema.a RENAME TO b
http://www.postgresql.org/docs/9.0/static/sql-altertable.html

op.rename_table('my_schema.a', 'b') also gives invalid DDL:
ALTER TABLE "my_schema.a" RENAME TO b

@sqlalchemy-bot
Copy link
Author

Changes by Dmitriy Bogomolov (@dvbogomolov):

  • edited description

2 similar comments
@sqlalchemy-bot
Copy link
Author

Changes by Dmitriy Bogomolov (@dvbogomolov):

  • edited description

@sqlalchemy-bot
Copy link
Author

Changes by Dmitriy Bogomolov (@dvbogomolov):

  • edited description

@sqlalchemy-bot
Copy link
Author

Changes by Michael Bayer (@zzzeek):

  • removed milestone (was: "0.2.0")

@sqlalchemy-bot
Copy link
Author

Michael Bayer (@zzzeek) wrote:

see #33 for related

@sqlalchemy-bot
Copy link
Author

Michael Bayer (@zzzeek) wrote:

705f0e7

@sqlalchemy-bot
Copy link
Author

Changes by Michael Bayer (@zzzeek):

  • changed status to closed

@sqlalchemy-bot sqlalchemy-bot added the bug Something isn't working label Nov 27, 2018
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
bug Something isn't working
Projects
None yet
Development

No branches or pull requests

1 participant