leonbond opened a new issue #10259:
URL: https://github.com/apache/shardingsphere/issues/10259
```
import org.antlr.v4.runtime.tree.ParseTree;
import org.apache.shardingsphere.sql.parser.core.parser.SQLParserExecutor;
import org.junit.Test;
import javax.xml.bind.SchemaOutputResolver;
public class T1 {
@Test
public void t1() {
ParseTree parseTree = new SQLParserExecutor("MySQL", "insert into
T_NAME (POINT) values (?)").execute().getRootNode();
}
}
```
This code will report the following error:
```
line 1:20 no viable alternative at input '(POINT'
```
Only the word "POINT" doesn’t work. Why? Is it a keyword?
--
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]