1
0
mirror of https://github.com/twiglet/cs2j.git synced 2025-01-18 13:15:17 +01:00

ordering direction is optional

This commit is contained in:
Kevin Glynn 2011-11-26 18:09:39 +01:00
parent 826bf6b515
commit 7f8a732e66
5 changed files with 5 additions and 5 deletions

View File

@ -1217,7 +1217,7 @@ orderby_clause:
ordering_list:
ordering (',' ordering)* ;
ordering:
expression ordering_direction
expression ordering_direction?
;
ordering_direction:
'ascending'

View File

@ -1138,7 +1138,7 @@ orderby_clause:
ordering_list:
ordering (',' ordering)* ;
ordering:
expression ordering_direction
expression ordering_direction?
;
ordering_direction:
'ascending'

View File

@ -2530,7 +2530,7 @@ orderby_clause:
ordering_list:
ordering (',' ordering)* ;
ordering:
expression[ObjectType] ordering_direction
expression[ObjectType] ordering_direction?
;
ordering_direction:
'ascending'

View File

@ -710,7 +710,7 @@ orderby_clause:
ordering_list:
ordering (',' ordering)* ;
ordering:
expression ordering_direction
expression ordering_direction?
;
ordering_direction:
'ascending'

View File

@ -688,7 +688,7 @@ public orderby_clause:
public ordering_list:
ordering (',' ordering)* ;
public ordering:
expression ordering_direction
expression ordering_direction?
;
public ordering_direction:
'ascending'