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)
| 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. |
no outgoing calls