Skip to content

Commit

Permalink
updating sql walker to use quote strategy in joins
Browse files Browse the repository at this point in the history
  • Loading branch information
John Brown committed Jun 7, 2013
1 parent afb9c82 commit 4ef043f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/Doctrine/ORM/Query/SqlWalker.php
Original file line number Diff line number Diff line change
Expand Up @@ -930,7 +930,7 @@ public function walkJoinAssociationDeclaration($joinAssociationDeclaration, $joi
// 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'])
Expand Down

0 comments on commit 4ef043f

Please sign in to comment.