Skip to content

Commit d6897d8

Browse files
author
elasticsearchmachine
committed
[CI] Auto commit changes from spotless
1 parent d01184b commit d6897d8

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

x-pack/plugin/esql/src/main/java/org/elasticsearch/xpack/esql/expression/function/vector/VectorSimilarityFunction.java

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -233,7 +233,10 @@ public final FusedBlockLoaderExpression tryFuse(SearchStats stats) {
233233
vectorArray[i] = ((Number) vectorList.get(i)).floatValue();
234234
}
235235

236-
return new FusedBlockLoaderExpression(field, new DenseVectorFieldMapper.VectorSimilarityFunctionConfig(getSimilarityFunction(), vectorArray));
236+
return new FusedBlockLoaderExpression(
237+
field,
238+
new DenseVectorFieldMapper.VectorSimilarityFunctionConfig(getSimilarityFunction(), vectorArray)
239+
);
237240
}
238241

239242
interface VectorValueProvider extends Releasable {

0 commit comments

Comments
 (0)