MCPcopy Create free account
hub / github.com/apache/solr / equalsTo

Method equalsTo

solr/core/src/java/org/apache/solr/search/JoinQuery.java:496–502  ·  view source on GitHub ↗
(JoinQuery other)

Source from the content-addressed store, hash-verified

494 }
495
496 private boolean equalsTo(JoinQuery other) {
497 return this.fromField.equals(other.fromField)
498 && this.toField.equals(other.toField)
499 && this.q.equals(other.q)
500 && Objects.equals(fromIndex, other.fromIndex)
501 && this.fromCoreOpenTime == other.fromCoreOpenTime;
502 }
503
504 @Override
505 public int hashCode() {

Callers 1

equalsMethod · 0.95

Calls 1

equalsMethod · 0.45

Tested by

no test coverage detected