(JoinQuery other)
| 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() { |