This commit is contained in:
parent
df93f46888
commit
8e67ec8647
|
@ -129,5 +129,18 @@ public abstract class CardinalityUpperBound {
|
|||
public <R> R map(IntFunction<R> mapper) {
|
||||
return mapper.apply(estimate);
|
||||
}
|
||||
|
||||
@Override
|
||||
public boolean equals(Object o) {
|
||||
if (this == o) return true;
|
||||
if (o == null || getClass() != o.getClass()) return false;
|
||||
KnownCardinalityUpperBound that = (KnownCardinalityUpperBound) o;
|
||||
return estimate == that.estimate;
|
||||
}
|
||||
|
||||
@Override
|
||||
public int hashCode() {
|
||||
return Integer.hashCode(estimate);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue