mirror of
https://github.com/postgres/postgres.git
synced 2025-06-30 21:42:05 +03:00
pgindent run for 8.2.
This commit is contained in:
@ -7,7 +7,7 @@
|
||||
* Portions Copyright (c) 1994-5, Regents of the University of California
|
||||
*
|
||||
* IDENTIFICATION
|
||||
* $PostgreSQL: pgsql/src/backend/commands/explain.c,v 1.151 2006/09/06 20:40:47 tgl Exp $
|
||||
* $PostgreSQL: pgsql/src/backend/commands/explain.c,v 1.152 2006/10/04 00:29:51 momjian Exp $
|
||||
*
|
||||
*-------------------------------------------------------------------------
|
||||
*/
|
||||
@ -41,7 +41,7 @@ typedef struct ExplainState
|
||||
} ExplainState;
|
||||
|
||||
static void ExplainOneQuery(Query *query, ExplainStmt *stmt,
|
||||
ParamListInfo params, TupOutputState *tstate);
|
||||
ParamListInfo params, TupOutputState *tstate);
|
||||
static double elapsed_time(instr_time *starttime);
|
||||
static void explain_outNode(StringInfo str,
|
||||
Plan *plan, PlanState *planstate,
|
||||
@ -760,7 +760,7 @@ explain_outNode(StringInfo str,
|
||||
* The tidquals list has OR semantics, so be sure to show it
|
||||
* as an OR condition.
|
||||
*/
|
||||
List *tidquals = ((TidScan *) plan)->tidquals;
|
||||
List *tidquals = ((TidScan *) plan)->tidquals;
|
||||
|
||||
if (list_length(tidquals) > 1)
|
||||
tidquals = list_make1(make_orclause(tidquals));
|
||||
@ -928,8 +928,8 @@ explain_outNode(StringInfo str,
|
||||
/*
|
||||
* Ordinarily we don't pass down our own outer_plan value to our
|
||||
* child nodes, but in an Append we must, since we might be
|
||||
* looking at an appendrel indexscan with outer references
|
||||
* from the member scans.
|
||||
* looking at an appendrel indexscan with outer references from
|
||||
* the member scans.
|
||||
*/
|
||||
explain_outNode(str, subnode,
|
||||
appendstate->appendplans[j],
|
||||
|
Reference in New Issue
Block a user