Final pgindent run with old pg_bsd_indent (version 1.3).

This is just to have a clean basis for comparison with the results of
the new version (which will indeed end up reverting some of these
changes...)

Discussion: https://postgr.es/m/E1dAmxK-0006EE-1r@gemulon.postgresql.org
Discussion: https://postgr.es/m/30527.1495162840@sss.pgh.pa.us
This commit is contained in:
Tom Lane 2017-06-21 14:09:24 -04:00
parent bcbf392ec8
commit 9ef2dbefc7
11 changed files with 29 additions and 28 deletions

View File

@ -177,10 +177,10 @@ void
issue_warnings_and_set_wal_level(void) issue_warnings_and_set_wal_level(void)
{ {
/* /*
* We unconditionally start/stop the new server because pg_resetwal -o * We unconditionally start/stop the new server because pg_resetwal -o set
* set wal_level to 'minimum'. If the user is upgrading standby * wal_level to 'minimum'. If the user is upgrading standby servers using
* servers using the rsync instructions, they will need pg_upgrade * the rsync instructions, they will need pg_upgrade to write its final
* to write its final WAL record showing wal_level as 'replica'. * WAL record showing wal_level as 'replica'.
*/ */
start_postmaster(&new_cluster, true); start_postmaster(&new_cluster, true);

View File

@ -1013,11 +1013,11 @@ typedef struct RangeTblEntry
* *
* We need these for CTE RTEs so that the types of self-referential * We need these for CTE RTEs so that the types of self-referential
* columns are well-defined. For VALUES RTEs, storing these explicitly * columns are well-defined. For VALUES RTEs, storing these explicitly
* saves having to re-determine the info by scanning the values_lists. * saves having to re-determine the info by scanning the values_lists. For
* For ENRs, we store the types explicitly here (we could get the * ENRs, we store the types explicitly here (we could get the information
* information from the catalogs if 'relid' was supplied, but we'd still * from the catalogs if 'relid' was supplied, but we'd still need these
* need these for TupleDesc-based ENRs, so we might as well always store * for TupleDesc-based ENRs, so we might as well always store the type
* the type info here). * info here).
*/ */
List *coltypes; /* OID list of column type OIDs */ List *coltypes; /* OID list of column type OIDs */
List *coltypmods; /* integer list of column typmods */ List *coltypmods; /* integer list of column typmods */

View File

@ -214,9 +214,9 @@ typedef struct ReorderBufferTXN
/* /*
* Has this transaction been spilled to disk? It's not always possible to * Has this transaction been spilled to disk? It's not always possible to
* deduce that fact by comparing nentries with nentries_mem, because * deduce that fact by comparing nentries with nentries_mem, because e.g.
* e.g. subtransactions of a large transaction might get serialized * subtransactions of a large transaction might get serialized together
* together with the parent - if they're restored to memory they'd have * with the parent - if they're restored to memory they'd have
* nentries_mem == nentries. * nentries_mem == nentries.
*/ */
bool serialized; bool serialized;

View File

@ -590,6 +590,7 @@ ExplainFormat
ExplainOneQuery_hook_type ExplainOneQuery_hook_type
ExplainState ExplainState
ExplainStmt ExplainStmt
ExportedSnapshot
Expr Expr
ExprContext ExprContext
ExprContextCallbackFunction ExprContextCallbackFunction