updating sql walker to use quote strategy in joins
This commit is contained in:
parent
afb9c829e2
commit
4ef043fc3b
1 changed files with 1 additions and 1 deletions
|
@ -930,7 +930,7 @@ class SqlWalker implements TreeWalker
|
|||
// Join relation table
|
||||
$joinTable = $assoc['joinTable'];
|
||||
$joinTableAlias = $this->getSQLTableAlias($joinTable['name'], $joinedDqlAlias);
|
||||
$joinTableName = $sourceClass->getQuotedJoinTableName($assoc, $this->platform);
|
||||
$joinTableName = $this->quoteStrategy->getJoinTableName($assoc, $sourceClass, $this->platform);
|
||||
|
||||
$conditions = array();
|
||||
$relationColumns = ($relation['isOwningSide'])
|
||||
|
|
Loading…
Add table
Reference in a new issue