Skip to content

Commit 8e5445b

Browse files
committed
AwaitsFix for #100559
1 parent 007a3df commit 8e5445b

File tree

2 files changed

+8
-1
lines changed

2 files changed

+8
-1
lines changed

x-pack/plugin/esql/src/test/java/org/elasticsearch/xpack/esql/expression/function/AbstractFunctionTestCase.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -420,7 +420,7 @@ protected void assertSimpleWithNulls(List<Object> data, Block value, int nullBlo
420420
assertTrue("argument " + nullBlock + " is null", value.isNull(0));
421421
}
422422

423-
public final void testEvaluateInManyThreads() throws ExecutionException, InterruptedException {
423+
public void testEvaluateInManyThreads() throws ExecutionException, InterruptedException {
424424
assumeTrue("nothing to do if a type error", testCase.getExpectedTypeError() == null);
425425
assumeTrue("All test data types must be representable in order to build fields", testCase.allTypesAreRepresentable());
426426
int count = 10_000;

x-pack/plugin/esql/src/test/java/org/elasticsearch/xpack/esql/expression/function/scalar/nulls/CoalesceTests.java

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -28,6 +28,7 @@
2828
import java.util.ArrayList;
2929
import java.util.List;
3030
import java.util.Map;
31+
import java.util.concurrent.ExecutionException;
3132
import java.util.function.Function;
3233
import java.util.function.Supplier;
3334

@@ -53,6 +54,12 @@ public static Iterable<Object[]> parameters() {
5354
return parameterSuppliersFromTypedData(builder.suppliers());
5455
}
5556

57+
@Override
58+
@AwaitsFix(bugUrl = "https://github.com/elastic/elasticsearch/issues/100559")
59+
public void testEvaluateInManyThreads() throws ExecutionException, InterruptedException {
60+
super.testEvaluateInManyThreads();
61+
}
62+
5663
@Override
5764
protected void assertSimpleWithNulls(List<Object> data, Block value, int nullBlock) {
5865
for (int i = 0; i < data.size(); i++) {

0 commit comments

Comments
 (0)