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:
parent
826bf6b515
commit
7f8a732e66
@ -1217,7 +1217,7 @@ orderby_clause:
|
|||||||
ordering_list:
|
ordering_list:
|
||||||
ordering (',' ordering)* ;
|
ordering (',' ordering)* ;
|
||||||
ordering:
|
ordering:
|
||||||
expression ordering_direction
|
expression ordering_direction?
|
||||||
;
|
;
|
||||||
ordering_direction:
|
ordering_direction:
|
||||||
'ascending'
|
'ascending'
|
||||||
|
@ -1138,7 +1138,7 @@ orderby_clause:
|
|||||||
ordering_list:
|
ordering_list:
|
||||||
ordering (',' ordering)* ;
|
ordering (',' ordering)* ;
|
||||||
ordering:
|
ordering:
|
||||||
expression ordering_direction
|
expression ordering_direction?
|
||||||
;
|
;
|
||||||
ordering_direction:
|
ordering_direction:
|
||||||
'ascending'
|
'ascending'
|
||||||
|
@ -2530,7 +2530,7 @@ orderby_clause:
|
|||||||
ordering_list:
|
ordering_list:
|
||||||
ordering (',' ordering)* ;
|
ordering (',' ordering)* ;
|
||||||
ordering:
|
ordering:
|
||||||
expression[ObjectType] ordering_direction
|
expression[ObjectType] ordering_direction?
|
||||||
;
|
;
|
||||||
ordering_direction:
|
ordering_direction:
|
||||||
'ascending'
|
'ascending'
|
||||||
|
@ -710,7 +710,7 @@ orderby_clause:
|
|||||||
ordering_list:
|
ordering_list:
|
||||||
ordering (',' ordering)* ;
|
ordering (',' ordering)* ;
|
||||||
ordering:
|
ordering:
|
||||||
expression ordering_direction
|
expression ordering_direction?
|
||||||
;
|
;
|
||||||
ordering_direction:
|
ordering_direction:
|
||||||
'ascending'
|
'ascending'
|
||||||
|
@ -688,7 +688,7 @@ public orderby_clause:
|
|||||||
public ordering_list:
|
public ordering_list:
|
||||||
ordering (',' ordering)* ;
|
ordering (',' ordering)* ;
|
||||||
public ordering:
|
public ordering:
|
||||||
expression ordering_direction
|
expression ordering_direction?
|
||||||
;
|
;
|
||||||
public ordering_direction:
|
public ordering_direction:
|
||||||
'ascending'
|
'ascending'
|
||||||
|
Loading…
x
Reference in New Issue
Block a user