LUCENE-10279: add entry in CHANGES.txt and make RangeClause final (#507)

This commit is contained in:
Ignacio Vera 2021-12-03 07:23:31 +01:00 committed by GitHub
parent a26ea57ec7
commit ec7a79eb56
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 3 additions and 2 deletions

View File

@ -84,7 +84,8 @@ Optimizations
Bug Fixes
---------------------
(No changes)
* LUCENE-10279: Fix equals in MultiRangeQuery. (Ignacio Vera)
Other
---------------------

View File

@ -48,7 +48,7 @@ import org.apache.lucene.util.DocIdSetBuilder;
*/
public abstract class MultiRangeQuery extends Query {
/** Representation of a single clause in a MultiRangeQuery */
public static class RangeClause {
public static final class RangeClause {
byte[] lowerValue;
byte[] upperValue;