Skip to content

Commit

Permalink
Remove unused code
Browse files Browse the repository at this point in the history
  • Loading branch information
robozmey committed Nov 11, 2024
1 parent e617d39 commit d6aa761
Showing 1 changed file with 0 additions and 2 deletions.
2 changes: 0 additions & 2 deletions src/backend/commands/explain_gp.c
Original file line number Diff line number Diff line change
Expand Up @@ -1747,14 +1747,12 @@ cdbexplain_showExecStats(struct PlanState *planstate, ExplainState *es)
ntuples_imin);
}
else {
// ExplainOpenGroup("Rows Out", NULL, false, es);
ExplainPropertyInteger("Workers", NULL, ntuples_cnt, es);
ExplainPropertyFloat("Average Rows", NULL, ntuples_avg, 1, es);
ExplainPropertyFloat("Max Rows", NULL, ntuples_max, 0, es);
ExplainPropertyInteger("Max Rows Segment", NULL, ntuples_imax, es);
ExplainPropertyFloat("Min Rows", NULL, ntuples_min, 0, es);
ExplainPropertyInteger("Min Rows Segment", NULL, ntuples_imin, es);
// ExplainCloseGroup("Rows out", NULL, false, es);
}
}

Expand Down

0 comments on commit d6aa761

Please sign in to comment.