Skip to content

Commit f0ff7ce

Browse files
Fix issue with matchFields refactor
1 parent 221d2d4 commit f0ff7ce

File tree

1 file changed

+1
-1
lines changed
  • x-pack/plugin/esql/src/main/java/org/elasticsearch/xpack/esql/plan/physical

1 file changed

+1
-1
lines changed

x-pack/plugin/esql/src/main/java/org/elasticsearch/xpack/esql/plan/physical/HashJoinExec.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -65,7 +65,7 @@ private HashJoinExec(StreamInput in) throws IOException {
6565
public void writeTo(StreamOutput out) throws IOException {
6666
super.writeTo(out);
6767
// TODO: clean up, we used to read the match fields here.
68-
out.writeNamedWriteableCollection(null);
68+
out.writeNamedWriteableCollection(leftFields);
6969
out.writeNamedWriteableCollection(leftFields);
7070
out.writeNamedWriteableCollection(rightFields);
7171
out.writeNamedWriteableCollection(addedFields);

0 commit comments

Comments
 (0)