mirror of
https://github.com/elastic/elasticsearch.git
synced 2025-06-28 09:28:55 -04:00
This adds the buggy functions to forbidden API check. Will remove once Lucene is updated. Related #128671
This commit is contained in:
parent
bbd65c69ba
commit
c28e01ecf4
1 changed files with 8 additions and 0 deletions
|
@ -61,3 +61,11 @@ org.apache.logging.log4j.message.ParameterizedMessage#<init>(java.lang.String, j
|
|||
|
||||
@defaultMessage Use WriteLoadForecaster#getForecastedWriteLoad instead
|
||||
org.elasticsearch.cluster.metadata.IndexMetadata#getForecastedWriteLoad()
|
||||
|
||||
# This is a temporary patch as there is a low level Lucene bug in certain scenarios
|
||||
# this should be fixed in the new Lucene release 10.3+
|
||||
org.apache.lucene.document.LongField#newExactQuery(java.lang.String, long) @ Use org.elasticsearch.lucene.document.NumericField#newExactLongQuery(java.lang.String, long) instead.
|
||||
org.apache.lucene.document.LongField#newRangeQuery(java.lang.String, long, long) @ Use org.elasticsearch.lucene.document.NumericField#newRangeLongQuery(java.lang.String, long, long) instead.
|
||||
org.apache.lucene.document.IntField#newExactQuery(java.lang.String, int) @ Use org.elasticsearch.lucene.document.NumericField#newExactIntQuery(java.lang.String, int) instead.
|
||||
org.apache.lucene.document.IntField#newRangeQuery(java.lang.String, int, int) @ Use org.elasticsearch.lucene.document.NumericField#newRangeIntQuery(java.lang.String, int, int) instead.
|
||||
org.apache.lucene.search.IndexSortSortedNumericDocValuesRangeQuery @ use org.elasticsearch.lucene.search.XIndexSortSortedNumericDocValuesRangeQuery instead.
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue