Skip to content

Commit 96d6039

Browse files
authored
Upgrade Lucene to 8.5.0-snapshot-b01d7cb (#52584)
Upgrading 7x to same Lucene 8.5 version used in master
1 parent 5a7db0c commit 96d6039

File tree

52 files changed

+78
-64
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

52 files changed

+78
-64
lines changed

buildSrc/version.properties

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
elasticsearch = 7.7.0
2-
lucene = 8.5.0-snapshot-d62f6307658
2+
lucene = 8.5.0-snapshot-b01d7cb
33

44
bundled_jdk_vendor = adoptopenjdk
55
bundled_jdk = 13.0.2+8
Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
b3d969d1d63fe9500fe5308b1a0c60d84d7bfa92

modules/lang-expression/licenses/lucene-expressions-8.5.0-snapshot-d62f6307658.jar.sha1

Lines changed: 0 additions & 1 deletion
This file was deleted.

modules/mapper-extras/src/test/java/org/elasticsearch/index/mapper/ScaledFloatFieldMapperTests.java

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -77,7 +77,7 @@ public void testDefaults() throws Exception {
7777
IndexableField[] fields = doc.rootDoc().getFields("field");
7878
assertEquals(2, fields.length);
7979
IndexableField pointField = fields[0];
80-
assertEquals(1, pointField.fieldType().pointDataDimensionCount());
80+
assertEquals(1, pointField.fieldType().pointDimensionCount());
8181
assertFalse(pointField.fieldType().stored());
8282
assertEquals(1230, pointField.numericValue().longValue());
8383
IndexableField dvField = fields[1];
@@ -151,7 +151,7 @@ public void testNoDocValues() throws Exception {
151151
IndexableField[] fields = doc.rootDoc().getFields("field");
152152
assertEquals(1, fields.length);
153153
IndexableField pointField = fields[0];
154-
assertEquals(1, pointField.fieldType().pointDataDimensionCount());
154+
assertEquals(1, pointField.fieldType().pointDimensionCount());
155155
assertEquals(1230, pointField.numericValue().longValue());
156156
}
157157

@@ -175,7 +175,7 @@ public void testStore() throws Exception {
175175
IndexableField[] fields = doc.rootDoc().getFields("field");
176176
assertEquals(3, fields.length);
177177
IndexableField pointField = fields[0];
178-
assertEquals(1, pointField.fieldType().pointDataDimensionCount());
178+
assertEquals(1, pointField.fieldType().pointDimensionCount());
179179
assertEquals(1230, pointField.numericValue().doubleValue(), 0d);
180180
IndexableField dvField = fields[1];
181181
assertEquals(DocValuesType.SORTED_NUMERIC, dvField.fieldType().docValuesType());
@@ -204,7 +204,7 @@ public void testCoerce() throws Exception {
204204
IndexableField[] fields = doc.rootDoc().getFields("field");
205205
assertEquals(2, fields.length);
206206
IndexableField pointField = fields[0];
207-
assertEquals(1, pointField.fieldType().pointDataDimensionCount());
207+
assertEquals(1, pointField.fieldType().pointDimensionCount());
208208
assertEquals(1230, pointField.numericValue().longValue());
209209
IndexableField dvField = fields[1];
210210
assertEquals(DocValuesType.SORTED_NUMERIC, dvField.fieldType().docValuesType());
@@ -319,7 +319,7 @@ public void testNullValue() throws IOException {
319319
IndexableField[] fields = doc.rootDoc().getFields("field");
320320
assertEquals(2, fields.length);
321321
IndexableField pointField = fields[0];
322-
assertEquals(1, pointField.fieldType().pointDataDimensionCount());
322+
assertEquals(1, pointField.fieldType().pointDimensionCount());
323323
assertFalse(pointField.fieldType().stored());
324324
assertEquals(25, pointField.numericValue().longValue());
325325
IndexableField dvField = fields[1];
Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
d81b8f0ecdc67ba74049e65702582fcb8b605cfd

plugins/analysis-icu/licenses/lucene-analyzers-icu-8.5.0-snapshot-d62f6307658.jar.sha1

Lines changed: 0 additions & 1 deletion
This file was deleted.
Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
13e9fd71cb3992b148728fe4884b7a6d0e26ee78

plugins/analysis-kuromoji/licenses/lucene-analyzers-kuromoji-8.5.0-snapshot-d62f6307658.jar.sha1

Lines changed: 0 additions & 1 deletion
This file was deleted.
Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
58638e06cd1221b1d4de01705882922936ad69c9

plugins/analysis-nori/licenses/lucene-analyzers-nori-8.5.0-snapshot-d62f6307658.jar.sha1

Lines changed: 0 additions & 1 deletion
This file was deleted.

0 commit comments

Comments
 (0)