File tree Expand file tree Collapse file tree 3 files changed +6
-2
lines changed
x-pack/plugin/esql/compute/src/main/java/org/elasticsearch/compute Expand file tree Collapse file tree 3 files changed +6
-2
lines changed Original file line number Diff line number Diff line change 1+ pr : 138564
2+ summary : ESQL - Add planning detailed timing to profile information
3+ area : " ES|QL, ES|QL"
4+ type : enhancement
5+ issues : []
Original file line number Diff line number Diff line change 1818import org .elasticsearch .common .io .stream .Writeable ;
1919import org .elasticsearch .common .util .concurrent .ConcurrentCollections ;
2020import org .elasticsearch .core .Nullable ;
21- import org .elasticsearch .search .profile .query .QueryProfiler ;
2221
2322import java .io .IOException ;
2423import java .io .UncheckedIOException ;
Original file line number Diff line number Diff line change @@ -29,7 +29,7 @@ public static PlanProfile readFrom(StreamInput in) throws IOException {
2929 String nodeName = in .readString ();
3030 String planTree = in .readString ();
3131 PlanTimeProfile profile = null ;
32- if ( in .getTransportVersion ().supports (PLAN_PROFILE_VERSION )) {
32+ if ( in .getTransportVersion ().supports (PLAN_PROFILE_VERSION )) {
3333 profile = in .readOptionalWriteable (PlanTimeProfile ::new );
3434 }
3535
You can’t perform that action at this time.
0 commit comments