From 0dfb43c5e81afd4f80a5552d4527815f4f142520 Mon Sep 17 00:00:00 2001 From: Nik Everett Date: Tue, 17 Dec 2024 16:18:45 -0500 Subject: [PATCH] Can't be small --- .../compute/operator/lookup/RightChunkedLeftJoinTests.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/x-pack/plugin/esql/compute/src/test/java/org/elasticsearch/compute/operator/lookup/RightChunkedLeftJoinTests.java b/x-pack/plugin/esql/compute/src/test/java/org/elasticsearch/compute/operator/lookup/RightChunkedLeftJoinTests.java index aa604a5cdf1e7..9e915b1127685 100644 --- a/x-pack/plugin/esql/compute/src/test/java/org/elasticsearch/compute/operator/lookup/RightChunkedLeftJoinTests.java +++ b/x-pack/plugin/esql/compute/src/test/java/org/elasticsearch/compute/operator/lookup/RightChunkedLeftJoinTests.java @@ -181,7 +181,7 @@ public void testThirdExample() { } public void testRandom() { - int leftSize = between(1, 10000); + int leftSize = between(100, 10000); BlockFactory factory = blockFactory(); ElementType[] leftColumns = randomArray(1, 10, ElementType[]::new, BasicBlockTests::randomElementType); ElementType[] rightColumns = randomArray(1, 10, ElementType[]::new, BasicBlockTests::randomElementType);