Skip to content

Commit 20f3811

Browse files
committed
#8182 handle IN with single parenthesized query as table-query
1 parent d8b62a1 commit 20f3811

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-
69 shift/reduce conflicts, 21 reduce/reduce conflicts.
1+
70 shift/reduce conflicts, 21 reduce/reduce conflicts.

src/dsql/parse.y

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7228,6 +7228,7 @@ in_predicate_value
72287228
%type <selectExprNode> table_subquery
72297229
table_subquery
72307230
: '(' column_select ')' { $$ = $2; }
7231+
| '(' table_subquery ')' { $$ = $2; }
72317232
;
72327233

72337234
// USER control SQL interface

0 commit comments

Comments
 (0)