Parses and validates a SQL statement. @param sql The SQL statement to parse. @return The root node of the SQL parse tree. @throws org.apache.calcite.sql.parser.SqlParseException on parse error
(String sql)
| 47 | * @throws org.apache.calcite.sql.parser.SqlParseException on parse error |
| 48 | */ |
| 49 | default SqlNode parse(String sql) throws SqlParseException { |
| 50 | return parse(new SourceStringReader(sql)); |
| 51 | } |
| 52 |
no outgoing calls