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

minor changes

This commit is contained in:
romanb 2009-01-19 21:16:46 +00:00
parent d1cd35d395
commit 663a7415f8
2 changed files with 5 additions and 6 deletions

View file

@ -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()
{ {

View file

@ -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