[
https://issues.apache.org/jira/browse/FLINK-23810?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=17694036#comment-17694036
]
Jark Wu commented on FLINK-23810:
---------------------------------
I think it's fine to add the DEBUG log. Adding INFO log seems verbose because
the SQL might be very long.
> 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
> Labels: pull-request-available
>
> 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.20.10#820010)