A tableName """t""" cause error on PostgreSQLSchema.doAllTables() #1106
Labels
Milestone
Comments
Thanks! Fixed. |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
The test PostgreSQLMigrationMediumTest.view(), used to test quoted table names, fail when try to cleanup the schema. I using the PostgreSQL 9.4.4.
The cause of error is the query used to get all table names. See the line 268 of PostgreSQLSchema:
Instead of
Using the quot_ident function fix the problem, as showed bellow:
Note: Seem that the function quot_ident exists since PostgreSQL 7.3.
Thanks,
Fabio.
The text was updated successfully, but these errors were encountered: