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

Method accept

core/src/main/java/org/apache/calcite/sql/SqlNode.java:290–290  ·  view source on GitHub ↗

Accepts a generic visitor. Implementations of this method in subtypes simply call the appropriate visit method on the org.apache.calcite.sql.util.SqlVisitor visitor object. The type parameter R must be consistent with the type parameter of the visitor.

(SqlVisitor<R> visitor)

Source from the content-addressed store, hash-verified

288 * parameter of the visitor.
289 */
290 public abstract <R> R accept(SqlVisitor<R> visitor);
291
292 /**
293 * Returns whether this node is structurally equivalent to another node.

Callers 15

testStackMethod · 0.95
hoistMethod · 0.95
convertMatchRecognizeMethod · 0.95
visitMethod · 0.95
validateJoinMethod · 0.95
visitMethod · 0.95
visitMethod · 0.95
visitMethod · 0.95
visitAntiOrSemiJoinMethod · 0.95

Calls

no outgoing calls