Skip to content

Commit 1485ceb

Browse files
committed
去除无关import
1 parent 83e919a commit 1485ceb

File tree

1 file changed

+11
-4
lines changed

1 file changed

+11
-4
lines changed

core/src/main/java/com/dtstack/flink/sql/parser/InsertSqlParser.java

+11-4
Original file line numberDiff line numberDiff line change
@@ -20,10 +20,17 @@
2020

2121
package com.dtstack.flink.sql.parser;
2222

23-
import org.apache.calcite.config.Lex;
24-
import org.apache.calcite.sql.*;
25-
import org.apache.calcite.sql.parser.SqlParseException;
26-
import org.apache.calcite.sql.parser.SqlParser;
23+
import org.apache.calcite.sql.SqlInsert;
24+
import org.apache.calcite.sql.SqlJoin;
25+
import org.apache.calcite.sql.SqlKind;
26+
import org.apache.calcite.sql.SqlNode;
27+
import org.apache.calcite.sql.SqlSelect;
28+
import org.apache.calcite.sql.SqlNodeList;
29+
import org.apache.calcite.sql.SqlBasicCall;
30+
import org.apache.calcite.sql.SqlMatchRecognize;
31+
import org.apache.calcite.sql.SqlOrderBy;
32+
import org.apache.calcite.sql.SqlIdentifier;
33+
import org.apache.calcite.sql.SqlAsOperator;
2734
import org.apache.calcite.sql.parser.SqlParserPos;
2835
import org.apache.commons.lang3.StringUtils;
2936
import com.google.common.collect.Lists;

0 commit comments

Comments
 (0)