LimitSubqueryOutputWalker: fix aliasing of property in OrderBy from MappedSuperclass
This commit is contained in:
parent
192da14842
commit
e501137d1a
@ -438,7 +438,9 @@ class LimitSubqueryOutputWalker extends SqlWalker
|
|||||||
// Field was declared in a parent class, so we need to get the proper SQL table alias
|
// Field was declared in a parent class, so we need to get the proper SQL table alias
|
||||||
// for the joined parent table.
|
// for the joined parent table.
|
||||||
$otherClassMetadata = $this->em->getClassMetadata($fieldMapping['declared']);
|
$otherClassMetadata = $this->em->getClassMetadata($fieldMapping['declared']);
|
||||||
$sqlTableAliasForFieldAlias = $this->getSQLTableAlias($otherClassMetadata->getTableName(), $dqlAliasForFieldAlias);
|
if (!$otherClassMetadata->isMappedSuperclass) {
|
||||||
|
$sqlTableAliasForFieldAlias = $this->getSQLTableAlias($otherClassMetadata->getTableName(), $dqlAliasForFieldAlias);
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
// Compose search/replace patterns
|
// Compose search/replace patterns
|
||||||
|
Loading…
Reference in New Issue
Block a user