We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent cfdb440 commit 96a6891Copy full SHA for 96a6891
x-pack/plugin/esql/src/test/java/org/elasticsearch/xpack/esql/enrich/LookupFromIndexOperatorTests.java
@@ -93,7 +93,7 @@ public class LookupFromIndexOperatorTests extends OperatorTestCase {
93
94
@Before
95
public void buildLookupIndex() throws IOException {
96
- numberOfJoinColumns = 2;// 1 + randomInt(1); // 1 or 2 join columns
+ numberOfJoinColumns = 1 + randomInt(1); // 1 or 2 join columns
97
try (RandomIndexWriter writer = new RandomIndexWriter(random(), lookupIndexDirectory)) {
98
for (int i = 0; i < LOOKUP_SIZE; i++) {
99
List<IndexableField> fields = new ArrayList<>();
0 commit comments