mirror of
https://github.com/apache/lucene.git
synced 2025-02-13 13:35:37 +00:00
SOLR-13573: Add SolrRangeQuery getters for bounds
This commit is contained in:
parent
4ac23230a4
commit
a50927bac0
@ -112,6 +112,8 @@ Other Changes
|
||||
|
||||
* SOLR-13680: Use try-with-resource to close the closeable resource (Furkan KAMACI, Munendra S N)
|
||||
|
||||
* SOLR-13573: Add SolrRangeQuery getters for upper, lower bound (Brian Rhees via Jason Gerlowski)
|
||||
|
||||
================== 8.2.0 ==================
|
||||
|
||||
Consult the LUCENE_CHANGES.txt file for additional, low level, changes in this release.
|
||||
|
@ -80,6 +80,9 @@ public final class SolrRangeQuery extends ExtendedQueryBase implements DocSetPro
|
||||
return field;
|
||||
}
|
||||
|
||||
public BytesRef getLower() { return lower; }
|
||||
public BytesRef getUpper() { return upper; }
|
||||
|
||||
public boolean includeLower() {
|
||||
return (flags & FLAG_INC_LOWER) != 0;
|
||||
}
|
||||
|
Loading…
x
Reference in New Issue
Block a user