mirror of
https://github.com/postgres/postgres.git
synced 2025-06-14 18:42:34 +03:00
Initial pgindent and pgperltidy run for v14.
Also "make reformat-dat-files". The only change worthy of note is that pgindent messed up the formatting of launcher.c's struct LogicalRepWorkerId, which led me to notice that that struct wasn't used at all anymore, so I just took it out.
This commit is contained in:
@ -34,8 +34,8 @@
|
||||
*/
|
||||
static void
|
||||
PutMemoryContextsStatsTupleStore(Tuplestorestate *tupstore,
|
||||
TupleDesc tupdesc, MemoryContext context,
|
||||
const char *parent, int level)
|
||||
TupleDesc tupdesc, MemoryContext context,
|
||||
const char *parent, int level)
|
||||
{
|
||||
#define PG_GET_BACKEND_MEMORY_CONTEXTS_COLS 9
|
||||
|
||||
@ -52,8 +52,8 @@ PutMemoryContextsStatsTupleStore(Tuplestorestate *tupstore,
|
||||
ident = context->ident;
|
||||
|
||||
/*
|
||||
* To be consistent with logging output, we label dynahash contexts
|
||||
* with just the hash table name as with MemoryContextStatsPrint().
|
||||
* To be consistent with logging output, we label dynahash contexts with
|
||||
* just the hash table name as with MemoryContextStatsPrint().
|
||||
*/
|
||||
if (ident && strcmp(name, "dynahash") == 0)
|
||||
{
|
||||
@ -75,7 +75,7 @@ PutMemoryContextsStatsTupleStore(Tuplestorestate *tupstore,
|
||||
|
||||
if (ident)
|
||||
{
|
||||
int idlen = strlen(ident);
|
||||
int idlen = strlen(ident);
|
||||
char clipped_ident[MEMORY_CONTEXT_IDENT_DISPLAY_SIZE];
|
||||
|
||||
/*
|
||||
@ -108,7 +108,7 @@ PutMemoryContextsStatsTupleStore(Tuplestorestate *tupstore,
|
||||
for (child = context->firstchild; child != NULL; child = child->nextchild)
|
||||
{
|
||||
PutMemoryContextsStatsTupleStore(tupstore, tupdesc,
|
||||
child, name, level + 1);
|
||||
child, name, level + 1);
|
||||
}
|
||||
}
|
||||
|
||||
@ -150,7 +150,7 @@ pg_get_backend_memory_contexts(PG_FUNCTION_ARGS)
|
||||
MemoryContextSwitchTo(oldcontext);
|
||||
|
||||
PutMemoryContextsStatsTupleStore(tupstore, tupdesc,
|
||||
TopMemoryContext, NULL, 0);
|
||||
TopMemoryContext, NULL, 0);
|
||||
|
||||
/* clean up and return the tuplestore */
|
||||
tuplestore_donestoring(tupstore);
|
||||
|
Reference in New Issue
Block a user