yongtaoChen opened a new issue #2605: 4.0.0-RC1 源码缺少文件? URL: https://github.com/apache/incubator-shardingsphere/issues/2605 `package org.apache.shardingsphere.core.parse; import org.antlr.v4.runtime.CharStreams; import org.antlr.v4.runtime.CommonTokenStream; import org.apache.shardingsphere.core.parse.antlr.autogen.PostgreSQLStatementLexer; import org.apache.shardingsphere.core.parse.spi.ShardingParseEngine; /** * Sharding parse engine for PostgreSQL. * * @author zhangliang */ public final class PostgreSQLShardingParseEngine implements ShardingParseEngine { @Override public String getDatabaseType() { return "PostgreSQL"; } @Override public PostgreSQLParser createSQLParser(final String sql) { return new PostgreSQLParser(new CommonTokenStream(new PostgreSQLStatementLexer(CharStreams.fromString(sql)))); } }` 源码中没有找到该路径:org.apache.shardingsphere.core.parse.antlr.autogen 整个项目中也没有找到该路径下的类,如SQLServerStatementParser、PostgreSQLStatementLexer等
---------------------------------------------------------------- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. For queries about this service, please contact Infrastructure at: [email protected] With regards, Apache Git Services
