mirror of
https://github.com/doctrine/orm.git
synced 2026-03-24 06:52:09 +01:00
DDC-3198: [GH-1075] Fixed query cache id generation: added platform to hash #3960
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 (Jun 27, 2014).
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 vilartoni:
Url: https://github.com/doctrine/doctrine2/pull/1075
Message:
There's an issue with the query cache id generation in
Doctrine\ORM\Query::_getQueryCacheId().If you happen to use different connections to different platforms on the same project and you're using the query cache, you will get an exception the moment you try to execute a query which SQL is different depending on the platform and it has been previously cached for the other platform, as they will share the same cache id.
In order to reproduce the bug it is sufficient with using the Doctrine Paginator in a query:
If we run the query for the first time with an empty cache in an Oracle connection and later on we try to run the same query in a MySQL connection, we get the following exception:
As it's trying to execute the SQL for Oracle in the MySQL connection due to the same cache id.
This issue can be easily fixed just by taking the platform type into account in the cache id generation.
@doctrinebot commented on GitHub (Jun 27, 2014):
Comment created by @doctrinebot:
A related Github Pull-Request [GH-1075] was closed:
https://github.com/doctrine/doctrine2/pull/1075
@doctrinebot commented on GitHub (Jun 27, 2014):
Comment created by @ocramius:
Merged:
c370426792@doctrinebot commented on GitHub (Jun 27, 2014):
Issue was closed with resolution "Fixed"