mirror of
https://github.com/apache/lucene.git
synced 2025-02-09 03:25:15 +00:00
SOLR-13573: Add SolrRangeQuery getters for bounds
This commit is contained in:
parent
9b986d268f
commit
52f1108a0e
@ -164,6 +164,8 @@ Other Changes
|
|||||||
|
|
||||||
* SOLR-13680: Use try-with-resource to close the closeable resource (Furkan KAMACI, Munendra S N)
|
* 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 ==================
|
================== 8.2.0 ==================
|
||||||
|
|
||||||
Consult the LUCENE_CHANGES.txt file for additional, low level, changes in this release.
|
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;
|
return field;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
public BytesRef getLower() { return lower; }
|
||||||
|
public BytesRef getUpper() { return upper; }
|
||||||
|
|
||||||
public boolean includeLower() {
|
public boolean includeLower() {
|
||||||
return (flags & FLAG_INC_LOWER) != 0;
|
return (flags & FLAG_INC_LOWER) != 0;
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user