[
https://issues.apache.org/jira/browse/CALCITE-5206?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=17564663#comment-17564663
]
Julian Hyde commented on CALCITE-5206:
--------------------------------------
I'm already working on a fix. Sorry I forgot to mark the bug 'in progress'.
Your proposed fix is similar to what I implemented.
> Parser allows MERGE with mismatched parentheses
> -----------------------------------------------
>
> Key: CALCITE-5206
> URL: https://issues.apache.org/jira/browse/CALCITE-5206
> Project: Calcite
> Issue Type: Bug
> Reporter: Julian Hyde
> Assignee: Julian Hyde
> Priority: Major
>
> The SQL parser allows invalid MERGE statements with mismatched parentheses.
> For example, the following invalid statement is treated as valid but is
> missing a trailing ')':
> {code}
> merge into emps as e
> using temps as t on e.empno = t.empno
> when not matched
> then insert (a, b) (values (1, 2);
> {code}
> And the following invalid statement is treated as valid but has an unmatched
> trailing ')':
> {code}
> merge into emps as e
> using temps as t on e.empno = t.empno
> when not matched
> then insert (a, b) values (1, 2));
> {code}
--
This message was sent by Atlassian Jira
(v8.20.10#820010)