Skip to content

Commit 440c336

Browse files
author
elasticsearchmachine
committed
[CI] Auto commit changes from spotless
1 parent 038d35d commit 440c336

File tree

7 files changed

+9
-8
lines changed

7 files changed

+9
-8
lines changed

x-pack/plugin/esql/compute/src/main/generated-src/org/elasticsearch/compute/data/BooleanBlock.java

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

x-pack/plugin/esql/compute/src/main/generated-src/org/elasticsearch/compute/data/BytesRefBlock.java

Lines changed: 3 additions & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

x-pack/plugin/esql/compute/src/main/generated-src/org/elasticsearch/compute/data/DoubleBlock.java

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

x-pack/plugin/esql/compute/src/main/generated-src/org/elasticsearch/compute/data/FloatBlock.java

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

x-pack/plugin/esql/compute/src/main/generated-src/org/elasticsearch/compute/data/IntBlock.java

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

x-pack/plugin/esql/compute/src/main/generated-src/org/elasticsearch/compute/data/LongBlock.java

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

x-pack/plugin/esql/src/main/java/org/elasticsearch/xpack/esql/expression/function/scalar/multivalue/MvContains.java

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,6 @@
1212
import org.elasticsearch.common.io.stream.StreamInput;
1313
import org.elasticsearch.compute.ann.Evaluator;
1414
import org.elasticsearch.compute.ann.Position;
15-
import org.elasticsearch.compute.data.Block;
1615
import org.elasticsearch.compute.data.BooleanBlock;
1716
import org.elasticsearch.compute.data.BytesRefBlock;
1817
import org.elasticsearch.compute.data.DoubleBlock;
@@ -292,7 +291,7 @@ static boolean process(@Position int position, BytesRefBlock superset, BytesRefB
292291
var value = new BytesRef();
293292
// we pass in a reference, but sometimes we only get a return value, see ConstantBytesRefVector.getBytesRef
294293
value = subset.getBytesRef(valueIndex, value);
295-
if(value.length == 0) {
294+
if (value.length == 0) {
296295
continue;
297296
}
298297
if (superset.hasValue(position, value) == false) {

0 commit comments

Comments
 (0)