1
0
mirror of https://github.com/postgres/postgres.git synced 2025-06-30 21:42:05 +03:00

Rename explain's "size" to "rows".

This commit is contained in:
Bruce Momjian
1999-04-23 21:23:49 +00:00
parent 35b168656b
commit fc08814e00
3 changed files with 14 additions and 11 deletions

View File

@ -4,7 +4,7 @@
*
* Copyright (c) 1994-5, Regents of the University of California
*
* $Id: explain.c,v 1.33 1999/03/23 16:50:46 momjian Exp $
* $Id: explain.c,v 1.34 1999/04/23 21:23:48 momjian Exp $
*
*/
#include <stdio.h>
@ -234,7 +234,7 @@ explain_outNode(StringInfo str, Plan *plan, int indent, ExplainState *es)
}
if (es->printCost)
{
appendStringInfo(str, " (cost=%.2f size=%d width=%d)",
appendStringInfo(str, " (cost=%.2f rows=%d width=%d)",
plan->cost, plan->plan_size, plan->plan_width);
}
appendStringInfo(str, "\n");