Commit 770ab783 by zinc

修复反编译错误

parent 1125fb35
<?xml version="1.0" encoding="UTF-8"?>
<project version="4">
<component name="VcsDirectoryMappings">
<mapping directory="$PROJECT_DIR$" vcs="Git" />
</component>
</project>
\ No newline at end of file
...@@ -181,5 +181,7 @@ ...@@ -181,5 +181,7 @@
</dependency> </dependency>
</dependencies> </dependencies>
<build>
<finalName>encryption-proxy</finalName>
</build>
</project> </project>
\ No newline at end of file
...@@ -610,13 +610,14 @@ public class SQLUtils { ...@@ -610,13 +610,14 @@ public class SQLUtils {
} }
} }
public static List<SQLStatement> parseStatements(String sql, String dbType) { public static List<SQLStatement> parseStatements(String sql, String dbType) {
return parseStatements(sql, dbType); return parseStatements(sql, dbType, new SQLParserFeature[0]);
} }
public static List<SQLStatement> parseStatements(String sql, DbType dbType) {
return parseStatements(sql, dbType); public static List<SQLStatement> parseStatements(String sql, DbType dbType) {
} return parseStatements(sql, dbType, new SQLParserFeature[0]);
}
public static SQLStatement parseSingleStatement(String sql, DbType dbType, boolean keepComments) { public static SQLStatement parseSingleStatement(String sql, DbType dbType, boolean keepComments) {
SQLStatementParser parser = SQLParserUtils.createSQLStatementParser(sql, dbType, keepComments); SQLStatementParser parser = SQLParserUtils.createSQLStatementParser(sql, dbType, keepComments);
......
Markdown 格式
0%
您添加了 0 到此讨论。请谨慎行事。
请先完成此评论的编辑!
注册 或者 后发表评论