mirror of
https://github.com/doctrine/orm.git
synced 2026-03-24 06:52:09 +01:00
DDC-2795: the queryBuider Expr\Join class has a ON type but unsupported by the parser #3494
Reference in New Issue
Block a user
Delete Branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
Originally created by @doctrinebot on GitHub (Nov 14, 2013).
Originally assigned to: @beberlei on GitHub.
Jira issue originally created by user stof:
The
Doctrine\ORM\Query\Expr\Joinclass has 2 cosntants for the condition types:WITHandON.None of them are documented. The only place where
WITHappear is the EBNF, which is outdated in the doc as it does not show arbitrary joins (added in 2.3) but only association joins.and when looking at the EBNF in the code, I find 2 different ones (none of them matching the one given in the doc):
Doctrine\ORM\query\Parser::Join:This is matching the implementation and ON is not supported.
Doctrine\ORM\Query\AST\Join:This one is missing 2 features also missing in the doc (INDEX BY for associations, and arbitrary joins) and adds the support of ON which is not implemented.
What is the reason to have this
ONconstant in the query builder ? It is confusing to get a DQL parse exception when using it if it is there.On a side note, what is the canonical source for the EBNF ? There is 2 different locations in the code (the phpdoc of parser methods and the phpdoc of AST nodes created by the parser), plus the doc. Shouldn't we try to limit the duplication and have a way to check the consistency of the doc ?
@doctrinebot commented on GitHub (Apr 16, 2015):
Comment created by mpdude:
Seems http://www.doctrine-project.org/jira/browse/DDC-135 deals with the initial feature addition of WITH. ON was not implemented at that time at least.