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 0ada5c4 commit 49e9d3eCopy full SHA for 49e9d3e
x-pack/plugin/esql/src/main/java/org/elasticsearch/xpack/esql/enrich/LookupFromIndexOperator.java
@@ -145,9 +145,9 @@ public LookupFromIndexOperator(
145
146
@Override
147
protected void performAsync(Page inputPage, ActionListener<OngoingJoin> listener) {
148
- Block[] inputBlockArray = new Block[matchFields.size()];
149
List<MatchConfig> newMatchFields = new ArrayList<>();
150
List<MatchConfig> uniqueMatchFields = uniqueMatchFieldsByName(matchFields);
+ Block[] inputBlockArray = new Block[uniqueMatchFields.size()];
151
for (int i = 0; i < uniqueMatchFields.size(); i++) {
152
MatchConfig matchField = uniqueMatchFields.get(i);
153
int inputChannel = matchField.channel();
0 commit comments