mirror of
https://github.com/postgres/postgres.git
synced 2025-11-22 12:22:45 +03:00
pgindent run for 9.5
This commit is contained in:
@@ -297,8 +297,8 @@ static void do_autovacuum(void);
|
||||
static void FreeWorkerInfo(int code, Datum arg);
|
||||
|
||||
static autovac_table *table_recheck_autovac(Oid relid, HTAB *table_toast_map,
|
||||
TupleDesc pg_class_desc,
|
||||
int effective_multixact_freeze_max_age);
|
||||
TupleDesc pg_class_desc,
|
||||
int effective_multixact_freeze_max_age);
|
||||
static void relation_needs_vacanalyze(Oid relid, AutoVacOpts *relopts,
|
||||
Form_pg_class classForm,
|
||||
PgStat_StatTabEntry *tabentry,
|
||||
@@ -1915,8 +1915,8 @@ do_autovacuum(void)
|
||||
|
||||
/*
|
||||
* Compute the multixact age for which freezing is urgent. This is
|
||||
* normally autovacuum_multixact_freeze_max_age, but may be less if we
|
||||
* are short of multixact member space.
|
||||
* normally autovacuum_multixact_freeze_max_age, but may be less if we are
|
||||
* short of multixact member space.
|
||||
*/
|
||||
effective_multixact_freeze_max_age = MultiXactMemberFreezeThreshold();
|
||||
|
||||
@@ -2782,7 +2782,7 @@ relation_needs_vacanalyze(Oid relid,
|
||||
static void
|
||||
autovacuum_do_vac_analyze(autovac_table *tab, BufferAccessStrategy bstrategy)
|
||||
{
|
||||
RangeVar rangevar;
|
||||
RangeVar rangevar;
|
||||
|
||||
/* Set up command parameters --- use local variables instead of palloc */
|
||||
MemSet(&rangevar, 0, sizeof(rangevar));
|
||||
|
||||
@@ -254,15 +254,15 @@ BackgroundWorkerStateChange(void)
|
||||
}
|
||||
|
||||
/*
|
||||
* If the worker is marked for termination, we don't need to add it
|
||||
* to the registered workers list; we can just free the slot.
|
||||
* However, if bgw_notify_pid is set, the process that registered the
|
||||
* worker may need to know that we've processed the terminate request,
|
||||
* so be sure to signal it.
|
||||
* If the worker is marked for termination, we don't need to add it to
|
||||
* the registered workers list; we can just free the slot. However, if
|
||||
* bgw_notify_pid is set, the process that registered the worker may
|
||||
* need to know that we've processed the terminate request, so be sure
|
||||
* to signal it.
|
||||
*/
|
||||
if (slot->terminate)
|
||||
{
|
||||
int notify_pid;
|
||||
int notify_pid;
|
||||
|
||||
/*
|
||||
* We need a memory barrier here to make sure that the load of
|
||||
@@ -426,7 +426,7 @@ BackgroundWorkerStopNotifications(pid_t pid)
|
||||
void
|
||||
ResetBackgroundWorkerCrashTimes(void)
|
||||
{
|
||||
slist_mutable_iter iter;
|
||||
slist_mutable_iter iter;
|
||||
|
||||
slist_foreach_modify(iter, &BackgroundWorkerList)
|
||||
{
|
||||
@@ -435,8 +435,8 @@ ResetBackgroundWorkerCrashTimes(void)
|
||||
rw = slist_container(RegisteredBgWorker, rw_lnode, iter.cur);
|
||||
|
||||
/*
|
||||
* For workers that should not be restarted, we don't want to lose
|
||||
* the information that they have crashed; otherwise, they would be
|
||||
* For workers that should not be restarted, we don't want to lose the
|
||||
* information that they have crashed; otherwise, they would be
|
||||
* restarted, which is wrong.
|
||||
*/
|
||||
if (rw->rw_worker.bgw_restart_time != BGW_NEVER_RESTART)
|
||||
@@ -679,7 +679,8 @@ StartBackgroundWorker(void)
|
||||
/*
|
||||
* Early initialization. Some of this could be useful even for
|
||||
* background workers that aren't using shared memory, but they can
|
||||
* call the individual startup routines for those subsystems if needed.
|
||||
* call the individual startup routines for those subsystems if
|
||||
* needed.
|
||||
*/
|
||||
BaseInit();
|
||||
|
||||
|
||||
@@ -2580,7 +2580,7 @@ CreateSharedBackendStatus(void)
|
||||
buffer = (char *) BackendSslStatusBuffer;
|
||||
for (i = 0; i < MaxBackends; i++)
|
||||
{
|
||||
BackendStatusArray[i].st_sslstatus = (PgBackendSSLStatus *)buffer;
|
||||
BackendStatusArray[i].st_sslstatus = (PgBackendSSLStatus *) buffer;
|
||||
buffer += sizeof(PgBackendSSLStatus);
|
||||
}
|
||||
}
|
||||
|
||||
@@ -2603,7 +2603,7 @@ reaper(SIGNAL_ARGS)
|
||||
if (EXIT_STATUS_3(exitstatus))
|
||||
{
|
||||
ereport(LOG,
|
||||
(errmsg("shutdown at recovery target")));
|
||||
(errmsg("shutdown at recovery target")));
|
||||
Shutdown = SmartShutdown;
|
||||
TerminateChildren(SIGTERM);
|
||||
pmState = PM_WAIT_BACKENDS;
|
||||
@@ -2930,9 +2930,9 @@ CleanupBackgroundWorker(int pid,
|
||||
}
|
||||
|
||||
/*
|
||||
* We must release the postmaster child slot whether this worker
|
||||
* is connected to shared memory or not, but we only treat it as
|
||||
* a crash if it is in fact connected.
|
||||
* We must release the postmaster child slot whether this worker is
|
||||
* connected to shared memory or not, but we only treat it as a crash
|
||||
* if it is in fact connected.
|
||||
*/
|
||||
if (!ReleasePostmasterChildSlot(rw->rw_child_slot) &&
|
||||
(rw->rw_worker.bgw_flags & BGWORKER_SHMEM_ACCESS) != 0)
|
||||
|
||||
Reference in New Issue
Block a user