1
0
mirror of synced 2025-01-17 22:11:41 +03:00

DDC-736 - Fix ordering of identification variables in DQL parser to be by specification.

This commit is contained in:
Benjamin Eberlei 2010-11-11 21:12:09 +01:00
parent ac85584e9b
commit e4280cf82e
2 changed files with 75 additions and 2 deletions

View File

@ -125,6 +125,16 @@ class Parser
*/
private $_customOutputWalker;
/**
* @var array
*/
private $_identVariableOrder = array();
/**
* @var array
*/
private $_identVariableExpressions = array();
/**
* Creates a new query parser object.
*
@ -297,6 +307,19 @@ class Parser
}
}
// fix order of identification variables
if ( count($this->_identVariableExpressions) > 1) {
$n = count($this->_identVariableOrder);
for ($i = 0; $i < $n; $i++) {
if (isset($this->_identVariableExpressions[$this->_identVariableOrder[$i]])) {
$expr = $this->_identVariableExpressions[$this->_identVariableOrder[$i]];
$key = array_search($expr, $AST->selectClause->selectExpressions);
unset($AST->selectClause->selectExpressions[$key]);
$AST->selectClause->selectExpressions[] = $expr;
}
}
}
if ($this->_customOutputWalker) {
$outputWalker = new $this->_customOutputWalker(
$this->_query, $this->_parserResult, $this->_queryComponents
@ -1419,6 +1442,7 @@ class Parser
$token = $this->_lexer->lookahead;
$aliasIdentificationVariable = $this->AliasIdentificationVariable();
$this->_identVariableOrder[] = $aliasIdentificationVariable;
$classMetadata = $this->_em->getClassMetadata($abstractSchemaName);
// Building queryComponent
@ -1509,6 +1533,7 @@ class Parser
$token = $this->_lexer->lookahead;
$aliasIdentificationVariable = $this->AliasIdentificationVariable();
$this->_identVariableOrder[] = $aliasIdentificationVariable;
// Verify that the association exists.
$parentClass = $this->_queryComponents[$joinPathExpression->identificationVariable]['metadata'];
@ -1628,6 +1653,7 @@ class Parser
public function SelectExpression()
{
$expression = null;
$identVariable = null;
$fieldAliasIdentificationVariable = null;
$peek = $this->_lexer->glimpse();
@ -1639,7 +1665,7 @@ class Parser
$expression = $this->ScalarExpression();
} else {
$supportsAlias = false;
$expression = $this->IdentificationVariable();
$expression = $identVariable = $this->IdentificationVariable();
}
} else if ($this->_lexer->lookahead['value'] == '(') {
if ($peek['type'] == Lexer::T_SELECT) {
@ -1666,6 +1692,7 @@ class Parser
} else if ($this->_lexer->lookahead['type'] == Lexer::T_PARTIAL) {
$supportsAlias = false;
$expression = $this->PartialObjectExpression();
$identVariable = $expression->identificationVariable;
} else if ($this->_lexer->lookahead['type'] == Lexer::T_INTEGER ||
$this->_lexer->lookahead['type'] == Lexer::T_FLOAT) {
// Shortcut: ScalarExpression => SimpleArithmeticExpression
@ -1694,7 +1721,11 @@ class Parser
}
}
return new AST\SelectExpression($expression, $fieldAliasIdentificationVariable);
$expr = new AST\SelectExpression($expression, $fieldAliasIdentificationVariable);
if (!$supportsAlias) {
$this->_identVariableExpressions[$identVariable] = $expr;
}
return $expr;
}
/**

View File

@ -0,0 +1,42 @@
<?php
namespace Doctrine\Tests\ORM\Functional\Ticket;
use Doctrine\Tests\Models\ECommerce\ECommerceCart;
use Doctrine\Tests\Models\ECommerce\ECommerceCustomer;
require_once __DIR__ . '/../../../TestInit.php';
class DDC736Test extends \Doctrine\Tests\OrmFunctionalTestCase
{
protected function setUp()
{
$this->useModelSet('ecommerce');
parent::setUp();
}
/**
* @group DDC-736
*/
public function testFetchJoinInitializesPreviouslyUninitializedCollectionOfManagedEntity()
{
$cust = new ECommerceCustomer;
$cust->setName('roman');
$cart = new ECommerceCart;
$cart->setPayment('cash');
$cart->setCustomer($cust);
$this->_em->persist($cust);
$this->_em->persist($cart);
$this->_em->flush();
$this->_em->clear();
$cart2 = $this->_em->createQuery("select c, ca from Doctrine\Tests\Models\ECommerce\ECommerceCart ca join ca.customer c")
->getSingleResult(/*\Doctrine\ORM\Query::HYDRATE_ARRAY*/);
$this->assertTrue($cart2 instanceof ECommerceCart);
$this->assertFalse($cart2->getCustomer() instanceof \Doctrine\ORM\Proxy\Proxy);
$this->assertTrue($cart2->getCustomer() instanceof ECommerceCustomer);
}
}