1
0
Fork 0
mirror of synced 2025-04-03 13:23:37 +03:00

sql generation

This commit is contained in:
Fabio B. Silva 2012-01-03 10:31:54 -02:00
parent ee7b5da64a
commit 0c1a8cd43f
3 changed files with 9 additions and 5 deletions

View file

@ -1642,19 +1642,18 @@ class Parser
$this->match(Lexer::T_OPEN_PARENTHESIS); $this->match(Lexer::T_OPEN_PARENTHESIS);
$fieldSet[] = $this->SimpleSelectExpression(); $fieldSet[] = $this->SelectExpression();
while ($this->_lexer->isNextToken(Lexer::T_COMMA)) { while ($this->_lexer->isNextToken(Lexer::T_COMMA)) {
$this->match(Lexer::T_COMMA); $this->match(Lexer::T_COMMA);
$fieldSet[] = $this->SimpleSelectExpression(); $fieldSet[] = $this->SelectExpression();
} }
$this->match(Lexer::T_CLOSE_PARENTHESIS); $this->match(Lexer::T_CLOSE_PARENTHESIS);
$expression = new AST\NewObjectExpression($identificationVariable, $fieldSet); $expression = new AST\NewObjectExpression($identificationVariable, $fieldSet);
// @TODO : Defer NewObjectExpression validation // @TODO : Defer NewObjectExpression validation ?
throw new \BadMethodCallException("Not complete yet !");
return $expression; return $expression;
} }

View file

@ -1221,6 +1221,12 @@ class SqlWalker implements TreeWalker
} }
break; break;
case ($expr instanceof AST\NewObjectExpression):
$sqlSelectExpressions = array_filter(array_map(array($this, 'walkSelectExpression'), $expr->fieldSet));
$sql .= implode(', ', $sqlSelectExpressions);
break;
default: default:
// IdentificationVariable or PartialObjectExpression // IdentificationVariable or PartialObjectExpression
if ($expr instanceof AST\PartialObjectExpression) { if ($expr instanceof AST\PartialObjectExpression) {

View file

@ -1560,7 +1560,6 @@ class SelectSqlGenerationTest extends \Doctrine\Tests\OrmTestCase
*/ */
public function testSupportsNewOperator() public function testSupportsNewOperator()
{ {
$this->markTestIncomplete('not complete yet !');
$this->assertSqlGeneration( $this->assertSqlGeneration(
'SELECT new Doctrine\Tests\Models\CMS\CmsUser(u.name, e.email, a.city) FROM Doctrine\Tests\Models\CMS\CmsUser u JOIN u.email e JOIN u.address a', 'SELECT new Doctrine\Tests\Models\CMS\CmsUser(u.name, e.email, a.city) FROM Doctrine\Tests\Models\CMS\CmsUser u JOIN u.email e JOIN u.address a',
'SELECT c0_.name AS name0, c1_.email AS email1, c2_.city AS city2 FROM cms_users c0_ INNER JOIN cms_emails c1_ ON c0_.email_id = c1_.id INNER JOIN cms_addresses c2_ ON c0_.id = c2_.user_id' 'SELECT c0_.name AS name0, c1_.email AS email1, c2_.city AS city2 FROM cms_users c0_ INNER JOIN cms_emails c1_ ON c0_.email_id = c1_.id INNER JOIN cms_addresses c2_ ON c0_.id = c2_.user_id'