Returns whether this node is structurally equivalent to another node. Some examples: 1 + 2 is structurally equivalent to 1 + 2 1 + 2 + 3 is structurally equivalent to (1 + 2) + 3, but not to 1 + (2 + 3), because the '+' operator is left-associative
(@Nullable SqlNode node, Litmus litmus)
| 300 | * </ul> |
| 301 | */ |
| 302 | public abstract boolean equalsDeep(@Nullable SqlNode node, Litmus litmus); |
| 303 | |
| 304 | @Deprecated // to be removed before 2.0 |
| 305 | public final boolean equalsDeep(@Nullable SqlNode node, boolean fail) { |
no outgoing calls