From 077d9fb0e6aed2c4eda9ed6b7f69f29734384447 Mon Sep 17 00:00:00 2001 From: beberlei Date: Sun, 14 Feb 2010 09:53:38 +0000 Subject: [PATCH] [2.0] DDC-135 DDC-177 Implement missing WITH clause, disallow use of ON clause by throwing an exception --- lib/Doctrine/ORM/Query/QueryException.php | 10 +++++++ lib/Doctrine/ORM/Query/SqlWalker.php | 28 ++++++++++++++++--- .../ORM/Query/SelectSqlGenerationTest.php | 28 +++++++++++++++++++ 3 files changed, 62 insertions(+), 4 deletions(-) diff --git a/lib/Doctrine/ORM/Query/QueryException.php b/lib/Doctrine/ORM/Query/QueryException.php index 414492bb4..ead7acf6d 100644 --- a/lib/Doctrine/ORM/Query/QueryException.php +++ b/lib/Doctrine/ORM/Query/QueryException.php @@ -33,6 +33,7 @@ use Doctrine\ORM\Query\AST\PathExpression; * @author Guilherme Blanco * @author Jonathan Wage * @author Roman Borschel + * @author Benjamin Eberlei */ class QueryException extends \Doctrine\Common\DoctrineException { @@ -84,4 +85,13 @@ class QueryException extends \Doctrine\Common\DoctrineException "in class ".$assoc->sourceEntityName." assocation ".$assoc->sourceFieldName ); } + + public static function overwritingJoinConditionsNotYetSupported($assoc) + { + return new self( + "Unsupported query operation: It is not yet possible to overwrite the join ". + "conditions in class ".$assoc->sourceEntityName." assocation ".$assoc->sourceFieldName.". ". + "Use WITH to append additional join conditions to the association." + ); + } } \ No newline at end of file diff --git a/lib/Doctrine/ORM/Query/SqlWalker.php b/lib/Doctrine/ORM/Query/SqlWalker.php index 102402d0e..80edbb51c 100644 --- a/lib/Doctrine/ORM/Query/SqlWalker.php +++ b/lib/Doctrine/ORM/Query/SqlWalker.php @@ -30,11 +30,14 @@ use Doctrine\ORM\Query, * the corresponding SQL. * * @author Roman Borschel + * @author Benjamin Eberlei * @since 2.0 */ class SqlWalker implements TreeWalker { - /** The ResultSetMapping. */ + /** + * @var ResultSetMapping + */ private $_rsm; /** Counter for generating unique column aliases. */ @@ -47,13 +50,19 @@ class SqlWalker implements TreeWalker /** Counter for SQL parameter positions. */ private $_sqlParamIndex = 1; - /** The ParserResult. */ + /** + * @var ParserResult + */ private $_parserResult; - /** The EntityManager. */ + /** + * @var EntityManager + */ private $_em; - /** The Connection of the EntityManager. */ + /** + * @var Doctrine\DBAL\Connection + */ private $_conn; /** @@ -741,6 +750,17 @@ class SqlWalker implements TreeWalker } } + // Handle ON / WITH clause + if ($join->conditionalExpression !== null) { + if ($join->whereType == AST\Join::JOIN_WHERE_ON) { + throw QueryException::overwritingJoinConditionsNotYetSupported($assoc); + } else { + $sql .= ' AND (' . implode(' OR ', + array_map(array($this, 'walkConditionalTerm'), $join->conditionalExpression->conditionalTerms) + ). ')'; + } + } + $discrSql = $this->_generateDiscriminatorColumnConditionSql($joinedDqlAlias); if ($discrSql) { diff --git a/tests/Doctrine/Tests/ORM/Query/SelectSqlGenerationTest.php b/tests/Doctrine/Tests/ORM/Query/SelectSqlGenerationTest.php index 973104cf1..aceaa85cb 100644 --- a/tests/Doctrine/Tests/ORM/Query/SelectSqlGenerationTest.php +++ b/tests/Doctrine/Tests/ORM/Query/SelectSqlGenerationTest.php @@ -192,6 +192,34 @@ class SelectSqlGenerationTest extends \Doctrine\Tests\OrmTestCase ); } + /** + * @group DDC-135 + */ + public function testSupportsJoinAndWithClauseRestriction() + { + $this->assertSqlGeneration( + "SELECT u FROM Doctrine\Tests\Models\CMS\CmsUser u LEFT JOIN u.articles a WITH a.topic LIKE '%foo%'", + "SELECT c0_.id AS id0, c0_.status AS status1, c0_.username AS username2, c0_.name AS name3 FROM cms_users c0_ LEFT JOIN cms_articles c1_ ON c0_.id = c1_.user_id AND (c1_.topic LIKE '%foo%')" + ); + $this->assertSqlGeneration( + "SELECT u FROM Doctrine\Tests\Models\CMS\CmsUser u INNER JOIN u.articles a WITH a.topic LIKE '%foo%'", + "SELECT c0_.id AS id0, c0_.status AS status1, c0_.username AS username2, c0_.name AS name3 FROM cms_users c0_ INNER JOIN cms_articles c1_ ON c0_.id = c1_.user_id AND (c1_.topic LIKE '%foo%')" + ); + } + + /** + * @group DDC-135 + * @group DDC-177 + */ + public function testJoinOnClause_NotYetSupported_ThrowsException() + { + $this->setExpectedException('Doctrine\ORM\Query\QueryException'); + + $sql = $this->_em->createQuery( + "SELECT u, a FROM Doctrine\Tests\Models\CMS\CmsUser u LEFT JOIN u.articles a ON a.topic LIKE '%foo%'" + )->getSql(); + } + public function testSupportsMultipleJoins() { $this->assertSqlGeneration(