minor changes
This commit is contained in:
parent
d1cd35d395
commit
663a7415f8
2 changed files with 5 additions and 6 deletions
|
@ -957,11 +957,10 @@ class Doctrine_ORM_Query_Parser
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* SimpleConditionalExpression ::= ExistsExpression |
|
* SimpleConditionalExpression ::=
|
||||||
* (SimpleStateFieldPathExpression (ComparisonExpression | BetweenExpression | LikeExpression |
|
* ComparisonExpression | BetweenExpression | LikeExpression |
|
||||||
* InExpression | NullComparisonExpression)) |
|
* InExpression | NullComparisonExpression | ExistsExpression |
|
||||||
* (CollectionValuedPathExpression EmptyCollectionComparisonExpression) |
|
* EmptyCollectionComparisonExpression | CollectionMemberExpression
|
||||||
* (EntityExpression CollectionMemberExpression)
|
|
||||||
*/
|
*/
|
||||||
private function _SimpleConditionalExpression()
|
private function _SimpleConditionalExpression()
|
||||||
{
|
{
|
||||||
|
|
|
@ -200,7 +200,7 @@ NamedParameter ::= ":" string
|
||||||
*/
|
*/
|
||||||
ArithmeticExpression ::= SimpleArithmeticExpression | "(" Subselect ")"
|
ArithmeticExpression ::= SimpleArithmeticExpression | "(" Subselect ")"
|
||||||
SimpleArithmeticExpression ::= ArithmeticTerm {("+" | "-") ArithmeticTerm}*
|
SimpleArithmeticExpression ::= ArithmeticTerm {("+" | "-") ArithmeticTerm}*
|
||||||
ArithmeticTerm ::= ArithmeticFactor {("*" |"/") ArithmeticFactor}*
|
ArithmeticTerm ::= ArithmeticFactor {("*" | "/") ArithmeticFactor}*
|
||||||
ArithmeticFactor ::= [("+" | "-")] ArithmeticPrimary
|
ArithmeticFactor ::= [("+" | "-")] ArithmeticPrimary
|
||||||
ArithmeticPrimary ::= StateFieldPathExpression | Literal | "(" SimpleArithmeticExpression ")" | Function | AggregateExpression
|
ArithmeticPrimary ::= StateFieldPathExpression | Literal | "(" SimpleArithmeticExpression ")" | Function | AggregateExpression
|
||||||
|
|
||||||
|
|
Loading…
Add table
Reference in a new issue