mirror of
https://github.com/postgres/postgres.git
synced 2025-11-06 07:49:08 +03:00
Final pgindent + perltidy run for v10.
This commit is contained in:
@@ -75,8 +75,8 @@ LogicalRepCtxStruct *LogicalRepCtx;
|
||||
|
||||
typedef struct LogicalRepWorkerId
|
||||
{
|
||||
Oid subid;
|
||||
Oid relid;
|
||||
Oid subid;
|
||||
Oid relid;
|
||||
} LogicalRepWorkerId;
|
||||
|
||||
static List *on_commit_stop_workers = NIL;
|
||||
@@ -552,7 +552,7 @@ void
|
||||
logicalrep_worker_stop_at_commit(Oid subid, Oid relid)
|
||||
{
|
||||
LogicalRepWorkerId *wid;
|
||||
MemoryContext oldctx;
|
||||
MemoryContext oldctx;
|
||||
|
||||
/* Make sure we store the info in context that survives until commit. */
|
||||
oldctx = MemoryContextSwitchTo(TopTransactionContext);
|
||||
@@ -824,11 +824,12 @@ AtEOXact_ApplyLauncher(bool isCommit)
|
||||
{
|
||||
if (isCommit)
|
||||
{
|
||||
ListCell *lc;
|
||||
ListCell *lc;
|
||||
|
||||
foreach (lc, on_commit_stop_workers)
|
||||
foreach(lc, on_commit_stop_workers)
|
||||
{
|
||||
LogicalRepWorkerId *wid = lfirst(lc);
|
||||
|
||||
logicalrep_worker_stop(wid->subid, wid->relid);
|
||||
}
|
||||
|
||||
|
||||
@@ -353,7 +353,7 @@ restart:
|
||||
{
|
||||
if (state->acquired_by != 0)
|
||||
{
|
||||
ConditionVariable *cv;
|
||||
ConditionVariable *cv;
|
||||
|
||||
if (nowait)
|
||||
ereport(ERROR,
|
||||
@@ -977,7 +977,7 @@ replorigin_get_progress(RepOriginId node, bool flush)
|
||||
static void
|
||||
ReplicationOriginExitCleanup(int code, Datum arg)
|
||||
{
|
||||
ConditionVariable *cv = NULL;
|
||||
ConditionVariable *cv = NULL;
|
||||
|
||||
LWLockAcquire(ReplicationOriginLock, LW_EXCLUSIVE);
|
||||
|
||||
@@ -1097,7 +1097,7 @@ replorigin_session_setup(RepOriginId node)
|
||||
void
|
||||
replorigin_session_reset(void)
|
||||
{
|
||||
ConditionVariable *cv;
|
||||
ConditionVariable *cv;
|
||||
|
||||
Assert(max_replication_slots != 0);
|
||||
|
||||
|
||||
@@ -1117,9 +1117,9 @@ SnapBuildProcessRunningXacts(SnapBuild *builder, XLogRecPtr lsn, xl_running_xact
|
||||
* only ever look at those.
|
||||
*
|
||||
* NB: We only increase xmax when a catalog modifying transaction commits
|
||||
* (see SnapBuildCommitTxn). Because of this, xmax can be lower than xmin,
|
||||
* which looks odd but is correct and actually more efficient, since we hit
|
||||
* fast paths in tqual.c.
|
||||
* (see SnapBuildCommitTxn). Because of this, xmax can be lower than
|
||||
* xmin, which looks odd but is correct and actually more efficient, since
|
||||
* we hit fast paths in tqual.c.
|
||||
*/
|
||||
builder->xmin = running->oldestRunningXid;
|
||||
|
||||
|
||||
@@ -351,8 +351,8 @@ retry:
|
||||
if (s->in_use && strcmp(name, NameStr(s->data.name)) == 0)
|
||||
{
|
||||
/*
|
||||
* This is the slot we want. We don't know yet if it's active,
|
||||
* so get ready to sleep on it in case it is. (We may end up not
|
||||
* This is the slot we want. We don't know yet if it's active, so
|
||||
* get ready to sleep on it in case it is. (We may end up not
|
||||
* sleeping, but we don't want to do this while holding the
|
||||
* spinlock.)
|
||||
*/
|
||||
@@ -397,7 +397,7 @@ retry:
|
||||
goto retry;
|
||||
}
|
||||
else
|
||||
ConditionVariableCancelSleep(); /* no sleep needed after all */
|
||||
ConditionVariableCancelSleep(); /* no sleep needed after all */
|
||||
|
||||
/* Let everybody know we've modified this slot */
|
||||
ConditionVariableBroadcast(&slot->active_cv);
|
||||
|
||||
@@ -293,8 +293,8 @@ SyncRepWaitForLSN(XLogRecPtr lsn, bool commit)
|
||||
* WalSender has checked our LSN and has removed us from queue. Clean up
|
||||
* state and leave. It's OK to reset these shared memory fields without
|
||||
* holding SyncRepLock, because any walsenders will ignore us anyway when
|
||||
* we're not on the queue. We need a read barrier to make sure we see
|
||||
* the changes to the queue link (this might be unnecessary without
|
||||
* we're not on the queue. We need a read barrier to make sure we see the
|
||||
* changes to the queue link (this might be unnecessary without
|
||||
* assertions, but better safe than sorry).
|
||||
*/
|
||||
pg_read_barrier();
|
||||
@@ -715,7 +715,7 @@ SyncRepGetSyncStandbysQuorum(bool *am_sync)
|
||||
for (i = 0; i < max_wal_senders; i++)
|
||||
{
|
||||
XLogRecPtr flush;
|
||||
WalSndState state;
|
||||
WalSndState state;
|
||||
int pid;
|
||||
|
||||
walsnd = &WalSndCtl->walsnds[i];
|
||||
@@ -794,7 +794,7 @@ SyncRepGetSyncStandbysPriority(bool *am_sync)
|
||||
for (i = 0; i < max_wal_senders; i++)
|
||||
{
|
||||
XLogRecPtr flush;
|
||||
WalSndState state;
|
||||
WalSndState state;
|
||||
int pid;
|
||||
|
||||
walsnd = &WalSndCtl->walsnds[i];
|
||||
|
||||
Reference in New Issue
Block a user