Skip to content

Commit c9a3a84

Browse files
author
elasticsearchmachine
committed
[CI] Auto commit changes from spotless
1 parent e3509c8 commit c9a3a84

File tree

4 files changed

+10
-5
lines changed

4 files changed

+10
-5
lines changed

benchmarks/src/main/java/org/elasticsearch/benchmark/_nightly/esql/ValuesSourceReaderBenchmark.java

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -223,7 +223,8 @@ private static BlockLoader blockLoader(String name) {
223223
Lucene.KEYWORD_ANALYZER,
224224
new KeywordFieldMapper.Builder(name, IndexVersion.current()).docValues(ft.docValuesType() != DocValuesType.NONE),
225225
syntheticSource,
226-
useBinaryDocValues).blockLoader(new MappedFieldType.BlockLoaderContext() {
226+
useBinaryDocValues
227+
).blockLoader(new MappedFieldType.BlockLoaderContext() {
227228
@Override
228229
public String indexName() {
229230
return "benchmark";

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

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -299,7 +299,8 @@ public void testBlockLoaderDoesNotUseSyntheticSourceDelegateWhenIgnoreAboveIsSet
299299
mock(NamedAnalyzer.class),
300300
builder,
301301
true,
302-
useBinaryDocValues);
302+
useBinaryDocValues
303+
);
303304

304305
MatchOnlyTextFieldMapper.MatchOnlyTextFieldType ft = new MatchOnlyTextFieldMapper.MatchOnlyTextFieldType(
305306
"parent",
@@ -347,7 +348,8 @@ public void testBlockLoaderDoesNotUseSyntheticSourceDelegateWhenIgnoreAboveIsSet
347348
mock(NamedAnalyzer.class),
348349
builder,
349350
true,
350-
useBinaryDocValues);
351+
useBinaryDocValues
352+
);
351353

352354
MatchOnlyTextFieldMapper.MatchOnlyTextFieldType ft = new MatchOnlyTextFieldMapper.MatchOnlyTextFieldType(
353355
"parent",

x-pack/plugin/esql/compute/src/test/java/org/elasticsearch/compute/lucene/read/ValueSourceReaderTypeConversionTests.java

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1394,7 +1394,8 @@ private KeywordFieldMapper.KeywordFieldType storedKeywordField(String name) {
13941394
Lucene.KEYWORD_ANALYZER,
13951395
new KeywordFieldMapper.Builder(name, IndexVersion.current()).docValues(false),
13961396
true, // TODO randomize - load from stored keyword fields if stored even in synthetic source
1397-
useBinaryDocValues);
1397+
useBinaryDocValues
1398+
);
13981399
}
13991400

14001401
@AwaitsFix(bugUrl = "Get working for multiple indices")

x-pack/plugin/esql/compute/src/test/java/org/elasticsearch/compute/lucene/read/ValuesSourceReaderOperatorTests.java

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1581,7 +1581,8 @@ private KeywordFieldMapper.KeywordFieldType storedKeywordField(String name) {
15811581
Lucene.KEYWORD_ANALYZER,
15821582
new KeywordFieldMapper.Builder(name, IndexVersion.current()).docValues(false),
15831583
true, // TODO randomize - load from stored keyword fields if stored even in synthetic source
1584-
useBinaryDocValues);
1584+
useBinaryDocValues
1585+
);
15851586
}
15861587

15871588
private TextFieldMapper.TextFieldType storedTextField(String name) {

0 commit comments

Comments
 (0)