DBZ-7505 Support Oracle 23 SELECT without FROM clause

This commit is contained in:
Chris Cranford 2024-02-18 13:34:57 -05:00 committed by Jiri Pechanec
parent 71b04b351e
commit df0f749a37
2 changed files with 3 additions and 1 deletions

View File

@ -3933,7 +3933,7 @@ subquery_operation_part
query_block
: SELECT (DISTINCT | UNIQUE | ALL)? selected_list
into_clause? from_clause where_clause? hierarchical_query_clause? group_by_clause? model_clause? order_by_clause? fetch_clause?
into_clause? from_clause? where_clause? hierarchical_query_clause? group_by_clause? model_clause? order_by_clause? fetch_clause?
;
selected_list

View File

@ -0,0 +1,2 @@
SELECT 2*3;
SELECT 2*3 WHERE 1=0;