Closed doctrinebot closed 6 years ago
Comment created by hosiplan:
aa80c7d!orm $> bisect start
aa80c7d!orm $> bisect bad
aa80c7d!orm $> bisect good v2.4.7
Bisecting: a merge base must be tested
[29d6da0fa063d55d06117045f3446b2716202d2b] Merge pull request #703 from shulcsm/patch-1
29d6da0!orm $> bisect good
Bisecting: 912 revisions left to test after this (roughly 10 steps)
[a2e0133a94bf235498ee2e805c8ca9a147b7fa24] Adding [DDC-3276](http://www.doctrine-project.org/jira/browse/DDC-3276) test group
a2e0133!orm $> bisect good
Bisecting: 456 revisions left to test after this (roughly 9 steps)
[dde09872df4f442f3a2a4c9ce6053badb8b49012] #1172 - writing a more concise test case about merging detached proxies
dde0987!orm $> bisect good
Bisecting: 233 revisions left to test after this (roughly 8 steps)
[d024193cc0d106d4939bbf698f840ef122602d64] Merge pull request #1272 from Ocramius/hotfix/[DDC-2704](http://www.doctrine-project.org/jira/browse/DDC-2704)-merge-inherited-transient-properties
d024193!orm $> bisect good
Bisecting: 116 revisions left to test after this (roughly 7 steps)
[6cf76158a07219529631f7b8fb43c3b92d3552be] Merge pull request #1329 from Wilt/patch-1
6cf7615!orm $> bisect good
Bisecting: 58 revisions left to test after this (roughly 6 steps)
[d1a695b42b54ed7deb2f9461fee7d02d32514c3a] Typo in phpdoc
d1a695b!orm $> bisect good
Bisecting: 28 revisions left to test after this (roughly 5 steps)
[b923c937e2194ae38c88e31cfcea8d06b58603fc] Merge branch 'hotfix/#1352-entity-generator-new-class-metadata-hotfix'
b923c93!orm $> bisect good
Bisecting: 14 revisions left to test after this (roughly 4 steps)
[6c5dbd8d4ca4fd68f0d5b2de467c3d2a59e0173c] #1353 #1347 #1351 - Removing double quotes (confusing)
6c5dbd8!orm $> bisect bad
Bisecting: 6 revisions left to test after this (roughly 3 steps)
[af3f5c5c5a93daf240c2daae4eddf9a0628eeb19] Add test for paginating on a query with a subquery in the where clause
af3f5c5!orm $> bisect good
Bisecting: 3 revisions left to test after this (roughly 2 steps)
[b76107e20f7fa893c2e4945a373ff624ed00c0d2] resolve review comments from @stof
b76107e!orm $> bisect bad
Bisecting: 0 revisions left to test after this (roughly 1 step)
[edcc0fc024e0d33a4f6159c006c0f393386dac3a] Fix paginator when ordering by while selecting entities using joined table inheritance
edcc0fc!orm $> bisect bad
Bisecting: 0 revisions left to test after this (roughly 0 steps)
[09d28819b520b9219bd6f41e8c6e0f4449a3807b] Fix issue where paginating on a query with a subquery in the where clause crashed
09d2881!orm $> bisect good
edcc0fc024e0d33a4f6159c006c0f393386dac3a is the first bad commit
commit edcc0fc024e0d33a4f6159c006c0f393386dac3a
Author: Bill Schaller <bill@zeroedin.com>
Date: Mon Mar 30 12:16:50 2015 -0400
Fix paginator when ordering by while selecting entities using joined table inheritance
:040000 040000 aa2bd1b6cb6dc10ef39c3ea1affe78c75bb2b778 4dc9a0e15f847bfc940096263a639d6f1a4eb618 M lib
:040000 040000 fa9a72d3eaae021b0015e43bbe64a9cf7eadf46e 7b6821dd22bee36c808e4680a427aa3ec75faad0 M tests
09d2881!orm $>
Comment created by hosiplan:
I've narrowed down the problem to this piece of code
<ins> $fieldMapping = $class->fieldMappings[$columnName];
</ins> if (isset($fieldMapping['declared']) && $fieldMapping['declared'] !== $class->name) {
<ins> // Field was declared in a parent class, so we need to get the proper SQL table alias
</ins> // for the joined parent table.
<ins> $otherClassMetadata = $this->_em->getClassMetadata($fieldMapping['declared']);
</ins> $sqlTableAliasForFieldAlias = $this->getSQLTableAlias($otherClassMetadata->getTableName(), $dqlAliasForFieldAlias);
+ }
This breaks the searchPatterns map
Because it thinks it needs to use different table alias for mapped superclass that contains the id
property.
Comment created by hosiplan:
I've opened a pullrequest with failing test case https://github.com/doctrine/doctrine2/pull/1377
Comment created by @doctrinebot:
A related Github Pull-Request [GH-1377] was assigned: https://github.com/doctrine/doctrine2/pull/1377
Comment created by @doctrinebot:
A related Github Pull-Request [GH-1377] was labeled: https://github.com/doctrine/doctrine2/pull/1377
Comment created by @doctrinebot:
A related Github Pull-Request [GH-1377] was merged: https://github.com/doctrine/doctrine2/pull/1377
Fix merged in https://github.com/doctrine/doctrine2/pull/1377
Jira issue originally created by user hosiplan:
I have a following DQL
Which generates following SQL
Now I wanna paginate it
the generated SQL Count query is
Next executed query is the query that selects ids for where in
And there goes my problem
I'm going to investigate more, I just wanned to open an issue for now so you're aware.