MCPcopy Create free account
hub / github.com/apache/calcite / parse

Method parse

core/src/main/java/org/apache/calcite/tools/Planner.java:49–49  ·  view source on GitHub ↗

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)

Source from the content-addressed store, hash-verified

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

Implementers 1

PlannerImplcore/src/main/java/org/apache/calcite/

Calls

no outgoing calls