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 221d2d4 commit f0ff7ceCopy full SHA for f0ff7ce
x-pack/plugin/esql/src/main/java/org/elasticsearch/xpack/esql/plan/physical/HashJoinExec.java
@@ -65,7 +65,7 @@ private HashJoinExec(StreamInput in) throws IOException {
65
public void writeTo(StreamOutput out) throws IOException {
66
super.writeTo(out);
67
// TODO: clean up, we used to read the match fields here.
68
- out.writeNamedWriteableCollection(null);
+ out.writeNamedWriteableCollection(leftFields);
69
out.writeNamedWriteableCollection(leftFields);
70
out.writeNamedWriteableCollection(rightFields);
71
out.writeNamedWriteableCollection(addedFields);
0 commit comments