Could not retrieve columns for a table with quotes on PostgreSQL#601
Could not retrieve columns for a table with quotes on PostgreSQL#601PowerKiKi wants to merge 1 commit intodoctrine:masterfrom
Conversation
If a table "user" exists in database, then it was not possible to retrieve existing columns from that database, because we used to compare unquoted table name with quoted table name. This lead to schema that were out of sync and could never be validated.
|
Hello, thank you for creating this pull request. I have automatically opened an issue http://www.doctrine-project.org/jira/browse/DBAL-901 We use Jira to track the state of pull requests and the versions they got |
|
This is a duplicate of #572. Also I don't think your approach is working for all cases because |
|
Indeed it is the same issue with a different solution. Also I didn't consider the use-case you describe, nor was I aware of A shame I didn't look for your PR before working on mine. Thanks for the notice anyway ! |
|
Nevermind :) |
If a table "user" exists in database, then it was not possible to retrieve
existing columns from that database, because we used to compare unquoted
table name with quoted table name. This lead to schema that were out of sync
and could never be validated.