File tree Expand file tree Collapse file tree 3 files changed +7
-3
lines changed
Expand file tree Collapse file tree 3 files changed +7
-3
lines changed Original file line number Diff line number Diff line change 1+ ## 0.6.1 (2022-11-17)
2+
3+ - fixed the ` ORDER BY ` clause for the dot-separated column references
4+
15## 0.6.0 (2022-11-04)
26
37- bump the version of ` antlr4-python3-runtime ` to 4.11.1
Original file line number Diff line number Diff line change 11__title__ = 'queryparser'
2- __version__ = '0.6.0 '
2+ __version__ = '0.6.1 '
33__author__ = 'Gal Matijevic'
44__email__ = 'gmatijevic@aip.de'
55__license__ = 'Apache-2.0'
Original file line number Diff line number Diff line change @@ -162,7 +162,7 @@ set_limit: TOP unsigned_decimal ;
162162set_quantifier : DISTINCT | ALL ;
163163sign : PLUS | MINUS ;
164164signed_integer : ( sign )? unsigned_decimal ;
165- sort_key : column_name | unsigned_decimal ;
165+ sort_key : value_expression| column_reference | unsigned_decimal ;
166166sort_specification : sort_key (ordering_specification )? ;
167167sort_specification_list : sort_specification ( COMMA sort_specification )* ;
168168string_geometry_function : extract_coordsys ;
@@ -217,4 +217,4 @@ value_expression_primary:
217217 | set_function_specification
218218 | LPAREN value_expression RPAREN ;
219219where_clause : WHERE search_condition ;
220- with_query : query_name ( LPAREN column_name ( COMMA column_name )* RPAREN )? AS LPAREN ( query_specification )? RPAREN ;
220+ with_query : query_name ( LPAREN column_name ( COMMA column_name )* RPAREN )? AS LPAREN ( query_specification )? RPAREN ;
You can’t perform that action at this time.
0 commit comments