mirror of
https://github.com/doctrine/orm.git
synced 2026-03-24 06:52:09 +01:00
DDC-2861: [GH-881] Fix persistence exception on a table with a schema on a platform without schema support #3572
Reference in New Issue
Block a user
Delete Branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
Originally created by @doctrinebot on GitHub (Dec 18, 2013).
Originally assigned to: @Ocramius on GitHub.
Jira issue originally created by user @doctrinebot:
This issue is created automatically through a Github pull request on behalf of michaelperrin:
Url: https://github.com/doctrine/doctrine2/pull/881
Message:
This PR solves two related issues with the use of a database schema on platforms (such as SQLite) that don't support schemas.
I discovered the issues when I generated the schema from my Doctrine entities on SQLite (for unit test purposes of my application) whereas my main application uses PostgreSQL.
This is one of my first PR on Doctrine, so sorry if I made some things in the wrong way and I'm open to discussion.
_First problem: table names dots are not converted in the ORM_
On a platform like SQLite, DBAL converts table names with dots (ie. a schema is declared) to double underscores.
However, the ORM doesn't do it, and persisting leads to an exception.
Example:
And then somewhere in the code:
This doesn't work in the current version of Doctrine. The table is created as
myschema**mytablebut entities are unsuccessfully saved inmyschema.mytable._Second problem: table names with reserved keywords in a database schema are not correctly escaped_
When a table name is declared as
myschema.order(or any other reserved keyword), only the reserved keyword part is escaped when creating the table, leading to the creation of a table name like myschema**order, which is invalid and therefore fails._How this PR solves the problem_
The classmetadata now stores in 2 separated properties the name of the table and the name of the schema. The schema property was partially implemented but I now make a full use of it.
When metadata is read (from Annotations, YAML, ...), if the table name has a dot (
myschema.mytable), it's splitted into 2 parts, andmyschemais saved in theschematable property, andmytableis saved in thenametable property, instead of storing the wholemyschema.mytablein thenametable property.This allows to do specific things about schemas everywhere in Doctrine, and not splitting again parts everywhere it's needed.
By the way, the
schemaproperty can now fully be used.For instance, these 2 YAML configurations are valid and do the same thing:
and:
This was something which was not finished to be implented since Doctrine 2.0.
The Default quote strategy now converts back the schema and table names to a unique table name, depending on the platform (e.g.
myschema.mytableif the platform supports schemas, andmyschema**mytableotherwise).As a result, there is no problem anymore and entities can be persisted without getting any exception.
I added some unit tests for this (the same unit tests failed before of course).
There's however a slight tradeoff on performance, as the
getTableNameof theDefaultQuoteStrategyclass adds some tests to return the correct table name.This solved these Doctrine issues: [DDC-2825](http://www.doctrine-project.org/jira/browse/[DDC-2825]%28http://www.doctrine-project.org/jira/browse/DDC-2825%29) and [DDC-2636](http://www.doctrine-project.org/jira/browse/[DDC-2636]%28http://www.doctrine-project.org/jira/browse/DDC-2636%29).
Again, this is one of my first PRs on Doctrine, so if there's anything wrong or if you have any question, feel free to comment this PR.
@Ocramius This PR is about what we talked about in [DDC-2825](http://www.doctrine-project.org/jira/browse/[DDC-2825]%28http://www.doctrine-project.org/jira/browse/DDC-2825%29)
@doctrinebot commented on GitHub (Dec 18, 2013):
@doctrinebot commented on GitHub (Jan 14, 2015):
Comment created by @doctrinebot:
A related Github Pull-Request [GH-881] was closed:
https://github.com/doctrine/doctrine2/pull/881
@doctrinebot commented on GitHub (Jan 14, 2015):
Issue was closed with resolution "Fixed"
@doctrinebot commented on GitHub (Jan 14, 2015):
Comment created by @doctrinebot:
A related Github Pull-Request [GH-881] was assigned:
https://github.com/doctrine/doctrine2/pull/881