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 41a31ed commit f7fc208Copy full SHA for f7fc208
x-pack/plugin/esql/compute/src/main/java/org/elasticsearch/compute/operator/DriverCompletionInfo.java
@@ -105,7 +105,9 @@ public void writeTo(StreamOutput out) throws IOException {
105
out.writeVLong(documentsFound);
106
out.writeVLong(valuesLoaded);
107
out.writeCollection(driverProfiles);
108
- out.writeCollection(planProfiles);
+ if (out.getTransportVersion().onOrAfter(TransportVersions.ESQL_PROFILE_INCLUDE_PLAN)) {
109
+ out.writeCollection(planProfiles);
110
+ }
111
}
112
113
public static class Accumulator {
0 commit comments