Skip to content

Commit 5e61597

Browse files
author
elasticsearchmachine
committed
Merge remote-tracking branch 'carlosdelest/enhancement/esql-profile-planning-time' into enhancement/esql-profile-planning-time
2 parents 077e7a3 + eadcc23 commit 5e61597

File tree

3 files changed

+6
-2
lines changed

3 files changed

+6
-2
lines changed

docs/changelog/138564.yaml

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
pr: 138564
2+
summary: ESQL - Add planning detailed timing to profile information
3+
area: "ES|QL, ES|QL"
4+
type: enhancement
5+
issues: []

x-pack/plugin/esql/compute/src/main/java/org/elasticsearch/compute/lucene/LuceneSliceQueue.java

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,6 @@
1818
import org.elasticsearch.common.io.stream.Writeable;
1919
import org.elasticsearch.common.util.concurrent.ConcurrentCollections;
2020
import org.elasticsearch.core.Nullable;
21-
import org.elasticsearch.search.profile.query.QueryProfiler;
2221

2322
import java.io.IOException;
2423
import java.io.UncheckedIOException;

x-pack/plugin/esql/compute/src/main/java/org/elasticsearch/compute/operator/PlanProfile.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff 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

0 commit comments

Comments
 (0)