Skip to content

Commit 7be7933

Browse files
committed
#8182 handle IN with single parenthesized query as table-query
1 parent 0e28a75 commit 7be7933

File tree

2 files changed

+2
-1
lines changed

2 files changed

+2
-1
lines changed

src/dsql/parse-conflicts.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
131 shift/reduce conflicts, 13 reduce/reduce conflicts.
1+
132 shift/reduce conflicts, 13 reduce/reduce conflicts.

src/dsql/parse.y

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7756,6 +7756,7 @@ in_predicate_value
77567756
%type <selectExprNode> table_subquery
77577757
table_subquery
77587758
: '(' column_select ')' { $$ = $2; }
7759+
| '(' table_subquery ')' { $$ = $2; }
77597760
;
77607761

77617762
// USER control SQL interface

0 commit comments

Comments
 (0)