Skip to content

Commit 611ef3d

Browse files
committed
#8182 handle IN with single parenthesized query as table-query
1 parent bc50d79 commit 611ef3d

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
@@ -7108,6 +7108,7 @@ in_predicate_value
71087108
%type <selectExprNode> table_subquery
71097109
table_subquery
71107110
: '(' column_select ')' { $$ = $2; }
7111+
| '(' table_subquery ')' { $$ = $2; }
71117112
;
71127113

71137114
// USER control SQL interface

0 commit comments

Comments
 (0)