1
0
Fork 0
mirror of synced 2025-04-02 12:56:16 +03:00

updating sql walker to use quote strategy in joins

This commit is contained in:
John Brown 2013-06-07 08:56:58 -07:00
parent afb9c829e2
commit 4ef043fc3b

View file

@ -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'])