Added missing indexBy.
This commit is contained in:
parent
3c31d88810
commit
305da5b8ff
1 changed files with 8 additions and 0 deletions
|
@ -709,6 +709,14 @@ class SqlWalker implements TreeWalker
|
||||||
$sql = ($joinType == AST\Join::JOIN_TYPE_LEFT || $joinType == AST\Join::JOIN_TYPE_LEFTOUTER)
|
$sql = ($joinType == AST\Join::JOIN_TYPE_LEFT || $joinType == AST\Join::JOIN_TYPE_LEFTOUTER)
|
||||||
? ' LEFT JOIN '
|
? ' LEFT JOIN '
|
||||||
: ' INNER JOIN ';
|
: ' INNER JOIN ';
|
||||||
|
|
||||||
|
if ($joinVarDecl->indexBy) {
|
||||||
|
// For Many-To-One or One-To-One associations this obviously makes no sense, but is ignored silently.
|
||||||
|
$this->_rsm->addIndexBy(
|
||||||
|
$joinVarDecl->indexBy->simpleStateFieldPathExpression->identificationVariable,
|
||||||
|
$joinVarDecl->indexBy->simpleStateFieldPathExpression->field
|
||||||
|
);
|
||||||
|
}
|
||||||
|
|
||||||
$joinAssocPathExpr = $join->joinAssociationPathExpression;
|
$joinAssocPathExpr = $join->joinAssociationPathExpression;
|
||||||
$joinedDqlAlias = $join->aliasIdentificationVariable;
|
$joinedDqlAlias = $join->aliasIdentificationVariable;
|
||||||
|
|
Loading…
Add table
Reference in a new issue