Pramy commented on issue #3155: Sharding jdbc parse sql statement which have a table name alias as T whill case error URL: https://github.com/apache/incubator-shardingsphere/issues/3155#issuecomment-538062649 I tried to reproduce it ``` public static void main(String[] args){ CharStream input = CharStreams.fromString("SELECT T.* FROM TS_ORDER T WHERE T.ID = 3"); Lexer lexer = new MySQLStatementLexer(input); CommonTokenStream tokens = new CommonTokenStream(lexer); MySQLParser parser = new MySQLParser(tokens); ParseTree tree = parser.execute().getChild(0); System.out.println(tree.toStringTree(parser)); } ``` error cause by parser 
---------------------------------------------------------------- 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
