mirror of https://github.com/apache/lucene.git
LUCENE-7381: Fix equals relation in RangeFieldQuery. Fix relation logic in BaseRangeFieldQueryTestCase.
This commit is contained in:
parent
f70adac1ab
commit
7f1db8a047
|
@ -124,8 +124,9 @@ abstract class RangeFieldQuery extends Query {
|
|||
@Override
|
||||
public void visit(int docID, byte[] leaf) throws IOException {
|
||||
// add the document iff:
|
||||
if (// target is within cell and queryType is INTERSECTS or CONTAINS:
|
||||
(comparator.isWithin(leaf) && queryType != QueryType.WITHIN)
|
||||
if (Arrays.equals(ranges, leaf)
|
||||
// target is within cell and queryType is INTERSECTS or CONTAINS:
|
||||
|| (comparator.isWithin(leaf) && queryType != QueryType.WITHIN)
|
||||
// target contains cell and queryType is INTERSECTS or WITHIN:
|
||||
|| (comparator.contains(leaf) && queryType != QueryType.CONTAINS)
|
||||
// target is not disjoint (crosses) and queryType is INTERSECTS
|
||||
|
@ -139,12 +140,12 @@ abstract class RangeFieldQuery extends Query {
|
|||
// compute range relation for BKD traversal
|
||||
if (comparator.isDisjoint(node)) {
|
||||
return Relation.CELL_OUTSIDE_QUERY;
|
||||
} else if (comparator.contains(node)) {
|
||||
// target contains cell; add iff queryType is not a CONTAINS query:
|
||||
return (queryType == QueryType.CONTAINS) ? Relation.CELL_OUTSIDE_QUERY : Relation.CELL_INSIDE_QUERY;
|
||||
} else if (comparator.isWithin(node)) {
|
||||
// target within cell; continue traversing:
|
||||
return Relation.CELL_CROSSES_QUERY;
|
||||
} else if (comparator.contains(node)) {
|
||||
// target contains cell; add iff queryType is not a CONTAINS query:
|
||||
return (queryType == QueryType.CONTAINS) ? Relation.CELL_OUTSIDE_QUERY : Relation.CELL_INSIDE_QUERY;
|
||||
}
|
||||
// target intersects cell; continue traversing:
|
||||
return Relation.CELL_CROSSES_QUERY;
|
||||
|
@ -170,8 +171,9 @@ abstract class RangeFieldQuery extends Query {
|
|||
if (values.getDocCount(field) == reader.maxDoc()) {
|
||||
// if query crosses, docs need to be further scrutinized
|
||||
byte[] range = getInternalRange(values.getMinPackedValue(field), values.getMaxPackedValue(field));
|
||||
// if the internal node is not contained by the query, all docs do not match
|
||||
if (((comparator.contains(range) && queryType == QueryType.CONTAINS)) == false) {
|
||||
// if the internal node is not equal and not contained by the query, all docs do not match
|
||||
if ((!Arrays.equals(ranges, range)
|
||||
&& (comparator.contains(range) && queryType != QueryType.CONTAINS)) == false) {
|
||||
allDocsMatch = false;
|
||||
}
|
||||
} else {
|
||||
|
|
|
@ -17,6 +17,7 @@
|
|||
package org.apache.lucene.search;
|
||||
|
||||
import java.io.IOException;
|
||||
import java.util.Arrays;
|
||||
import java.util.HashSet;
|
||||
import java.util.Set;
|
||||
|
||||
|
@ -262,10 +263,11 @@ public abstract class BaseRangeFieldQueryTestCase extends LuceneTestCase {
|
|||
|
||||
if (hits.get(docID) != expected) {
|
||||
StringBuilder b = new StringBuilder();
|
||||
b.append("FAIL (iter " + iter + "): ");
|
||||
if (expected == true) {
|
||||
b.append("FAILS: id=" + id + (boxes[id].length > 1 ? " (MultiValue) " : " ") + "should match but did not\n");
|
||||
b.append("id=" + id + (boxes[id].length > 1 ? " (MultiValue) " : " ") + "should match but did not\n");
|
||||
} else {
|
||||
b.append("FAIL: id=" + id + " should not match but did\n");
|
||||
b.append("id=" + id + " should not match but did\n");
|
||||
}
|
||||
b.append(" queryBox=" + queryBox + "\n");
|
||||
b.append(" box" + ((boxes[id].length > 1) ? "es=" : "=" ) + boxes[id][0]);
|
||||
|
@ -292,6 +294,9 @@ public abstract class BaseRangeFieldQueryTestCase extends LuceneTestCase {
|
|||
}
|
||||
|
||||
protected boolean expectedBBoxQueryResult(Box queryBox, Box box, Box.QueryType queryType) {
|
||||
if (box.equals(queryBox)) {
|
||||
return true;
|
||||
}
|
||||
Box.QueryType relation = box.relate(queryBox);
|
||||
if (queryType == Box.QueryType.INTERSECTS) {
|
||||
return relation != null;
|
||||
|
@ -345,6 +350,25 @@ public abstract class BaseRangeFieldQueryTestCase extends LuceneTestCase {
|
|||
}
|
||||
}
|
||||
|
||||
@Override
|
||||
public boolean equals(Object o) {
|
||||
return o != null
|
||||
&& getClass() == o.getClass()
|
||||
&& equalTo(getClass().cast(o));
|
||||
}
|
||||
|
||||
private boolean equalTo(Box o) {
|
||||
return Arrays.equals(min, o.min)
|
||||
&& Arrays.equals(max, o.max);
|
||||
}
|
||||
|
||||
@Override
|
||||
public int hashCode() {
|
||||
int result = Arrays.hashCode(min);
|
||||
result = 31 * result + Arrays.hashCode(max);
|
||||
return result;
|
||||
}
|
||||
|
||||
QueryType relate(Box other) {
|
||||
// check disjoint
|
||||
for (int d=0; d<this.min.length; ++d) {
|
||||
|
|
Loading…
Reference in New Issue