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

Method equals

fe/src/main/java/org/apache/impala/common/Id.java:47–53  ·  view source on GitHub ↗
(Object obj)

Source from the content-addressed store, hash-verified

45 }
46
47 @Override
48 public boolean equals(Object obj) {
49 if (obj == null) return false;
50 // only ids of the same subclass are comparable
51 if (obj.getClass() != this.getClass()) return false;
52 return ((Id)obj).id_ == id_;
53 }
54
55 @Override
56 public int compareTo(Id<IdType> cmp) {

Callers 15

applyMethod · 0.45
applyMethod · 0.45
rewriteInAndOtherExprMethod · 0.45
rewriteEqEqPredicateMethod · 0.45
applyMethod · 0.45
applyMethod · 0.45
applyMethod · 0.45
getTExecRequestMethod · 0.45
updatePartitionStatsMethod · 0.45
addToDeleteEventLogMethod · 0.45

Calls

no outgoing calls

Tested by

no test coverage detected