Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

execution: support explain analyze in mpp execution. #22053

Merged
merged 25 commits into from
Jan 7, 2021
Merged
Changes from 1 commit
Commits
Show all changes
25 commits
Select commit Hold shift + click to select a range
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
address comments
  • Loading branch information
windtalker committed Dec 30, 2020
commit 2a67d9eb44b7d9786852bcee32ae9ccc92da4f02
4 changes: 2 additions & 2 deletions util/execdetails/execdetails_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -129,7 +129,7 @@ func TestCopRuntimeStats(t *testing.T) {
}

if stats.GetCopStats(aggID).String() != "tikv_task:{proc max:4ns, min:3ns, p80:4ns, p95:4ns, iters:7, tasks:2, concurrency:2}" {
t.Fatalf("agg cop stats string is not expected, got: %v", stats.GetCopStats(aggID).String())
t.Fatalf("agg cop stats string is not as expected, got: %v", stats.GetCopStats(aggID).String())
}
rootStats := stats.GetRootStats(tableReaderID)
if rootStats == nil {
Expand Down Expand Up @@ -187,7 +187,7 @@ func TestCopRuntimeStatsForTiFlash(t *testing.T) {
}

if stats.GetCopStats(aggID).String() != "tikv_task:{proc max:4ns, min:3ns, p80:4ns, p95:4ns, iters:7, tasks:2, concurrency:2}" {
t.Fatalf("agg cop stats string is not expect, got: %v", stats.GetCopStats(aggID).String())
t.Fatalf("agg cop stats string is not as expected, got: %v", stats.GetCopStats(aggID).String())
}
rootStats := stats.GetRootStats(tableReaderID)
if rootStats == nil {
Expand Down