mirror of
https://github.com/honeymoose/OpenSearch.git
synced 2025-03-30 03:48:54 +00:00
Added FilteredQuery to the list of forbidden apis
This commit is contained in:
parent
0efeeff49a
commit
e2a2f13f17
@ -28,6 +28,10 @@ org.apache.lucene.index.IndexReader#tryIncRef()
|
|||||||
@defaultMessage QueryWrapperFilter is cachable by default - use Queries#wrap instead
|
@defaultMessage QueryWrapperFilter is cachable by default - use Queries#wrap instead
|
||||||
org.apache.lucene.search.QueryWrapperFilter#<init>(org.apache.lucene.search.Query)
|
org.apache.lucene.search.QueryWrapperFilter#<init>(org.apache.lucene.search.Query)
|
||||||
|
|
||||||
|
@defaultMessage Because the filtercache doesn't take deletes into account FilteredQuery can't be used - use XFilteredQuery instead
|
||||||
|
org.apache.lucene.search.FilteredQuery#<init>(org.apache.lucene.search.Query,org.apache.lucene.search.Filter)
|
||||||
|
org.apache.lucene.search.FilteredQuery#<init>(org.apache.lucene.search.Query,org.apache.lucene.search.Filter,org.apache.lucene.search.FilteredQuery$FilterStrategy)
|
||||||
|
|
||||||
@defaultMessage Pass the precision step from the mappings explicitly instead
|
@defaultMessage Pass the precision step from the mappings explicitly instead
|
||||||
org.apache.lucene.search.NumericRangeQuery#newDoubleRange(java.lang.String,java.lang.Double,java.lang.Double,boolean,boolean)
|
org.apache.lucene.search.NumericRangeQuery#newDoubleRange(java.lang.String,java.lang.Double,java.lang.Double,boolean,boolean)
|
||||||
org.apache.lucene.search.NumericRangeQuery#newFloatRange(java.lang.String,java.lang.Float,java.lang.Float,boolean,boolean)
|
org.apache.lucene.search.NumericRangeQuery#newFloatRange(java.lang.String,java.lang.Float,java.lang.Float,boolean,boolean)
|
||||||
|
3
pom.xml
3
pom.xml
@ -1068,6 +1068,9 @@
|
|||||||
<exclude>org/elasticsearch/common/util/MathUtils.class</exclude>
|
<exclude>org/elasticsearch/common/util/MathUtils.class</exclude>
|
||||||
<exclude>org/elasticsearch/common/math/UnboxedMathUtils.class</exclude>
|
<exclude>org/elasticsearch/common/math/UnboxedMathUtils.class</exclude>
|
||||||
<!-- end excludes for Math.abs -->
|
<!-- end excludes for Math.abs -->
|
||||||
|
<!-- start exclude for FilteredQuery -->
|
||||||
|
<exclude>org/elasticsearch/common/lucene/search/XFilteredQuery.class</exclude>
|
||||||
|
<!-- end exclude for FilteredQuery -->
|
||||||
</excludes>
|
</excludes>
|
||||||
<bundledSignatures>
|
<bundledSignatures>
|
||||||
<!-- This will automatically choose the right signatures based on 'targetVersion': -->
|
<!-- This will automatically choose the right signatures based on 'targetVersion': -->
|
||||||
|
Loading…
x
Reference in New Issue
Block a user