Skip to content

Commit 5a0eaeb

Browse files
committed
#8182 handle IN with single parenthesized query as table-query
1 parent 0308e7b commit 5a0eaeb

File tree

1 file changed

+1
-0
lines changed

1 file changed

+1
-0
lines changed

src/dsql/parse.y

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6211,6 +6211,7 @@ in_predicate_value
62116211
%type <selectExprNode> table_subquery
62126212
table_subquery
62136213
: '(' column_select ')' { $$ = $2; }
6214+
| '(' table_subquery ')' { $$ = $2; }
62146215
;
62156216

62166217
// USER control SQL interface

0 commit comments

Comments
 (0)