[
https://issues.apache.org/jira/browse/FLINK-23810?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=17400097#comment-17400097
]
hehuiyuan edited comment on FLINK-23810 at 8/17/21, 11:23 AM:
--------------------------------------------------------------
[~jark] ,[~twalthr] , I can try to do it if necessary.
was (Author: hehuiyuan):
I can try to do it if necessary.
> Print sql when parse failed , which is convenient to find error sql from
> multiple executed sql
> --------------------------------------------------------------------------------------------------
>
> Key: FLINK-23810
> URL: https://issues.apache.org/jira/browse/FLINK-23810
> Project: Flink
> Issue Type: Improvement
> Components: Table SQL / API
> Reporter: hehuiyuan
> Priority: Major
>
> Print sql when parse failed , which is convenient to find error sql.
>
> {code:java}
> public SqlNode parse(String sql) {
> try {
> SqlParser parser = SqlParser.create(sql, config);
> return parser.parseStmt();
> } catch (SqlParseException e) {
> throw new SqlParserException("SQL parse failed. " + e.getMessage(),
> e);
> }
> }
> {code}
>
>
--
This message was sent by Atlassian Jira
(v8.3.4#803005)