MCPcopy Create free account
hub / github.com/apache/impala / localEquals

Method localEquals

fe/src/main/java/org/apache/impala/analysis/Expr.java:1033–1036  ·  view source on GitHub ↗

Local eq comparator. Returns true if this expr is equal to 'that' ignoring children.

(Expr that)

Source from the content-addressed store, hash-verified

1031 * Local eq comparator. Returns true if this expr is equal to 'that' ignoring children.
1032 */
1033 protected boolean localEquals(Expr that) {
1034 return getClass() == that.getClass() &&
1035 (fn_ == null ? that.fn_ == null : fn_.equals(that.fn_));
1036 }
1037
1038 /**
1039 * Returns true if two expressions are equal. The equality comparison works on analyzed

Callers 1

matchesMethod · 0.95

Calls 1

equalsMethod · 0.45

Tested by

no test coverage detected