Fix LimitSubqueryOutputWalker when used on tables with joined table inheritance
This commit is contained in:
parent
b923c937e2
commit
54d7efd92c
1 changed files with 8 additions and 0 deletions
|
@ -344,6 +344,14 @@ class LimitSubqueryOutputWalker extends SqlWalker
|
||||||
// Generate search patterns for each field's path expression in the order by clause
|
// Generate search patterns for each field's path expression in the order by clause
|
||||||
foreach($this->rsm->fieldMappings as $fieldAlias => $columnName) {
|
foreach($this->rsm->fieldMappings as $fieldAlias => $columnName) {
|
||||||
$dqlAliasForFieldAlias = $this->rsm->columnOwnerMap[$fieldAlias];
|
$dqlAliasForFieldAlias = $this->rsm->columnOwnerMap[$fieldAlias];
|
||||||
|
$class = $dqlAliasToClassMap[$dqlAliasForFieldAlias];
|
||||||
|
|
||||||
|
// If the field is from a joined child table, we won't be ordering
|
||||||
|
// on it.
|
||||||
|
if (!isset($class->fieldMappings[$columnName])) {
|
||||||
|
continue;
|
||||||
|
}
|
||||||
|
|
||||||
$columnName = $this->quoteStrategy->getColumnName(
|
$columnName = $this->quoteStrategy->getColumnName(
|
||||||
$columnName,
|
$columnName,
|
||||||
$dqlAliasToClassMap[$dqlAliasForFieldAlias],
|
$dqlAliasToClassMap[$dqlAliasForFieldAlias],
|
||||||
|
|
Loading…
Add table
Reference in a new issue