1
0
mirror of https://github.com/postgres/postgres.git synced 2025-07-30 11:03:19 +03:00

Fix two typos in snapbuild.c.

Reported-by: Heikki Linnakangas <hlinnaka@iki.fi>
Discussion: https://postgr.es/m/c94be044-818f-15e3-1ad3-7a7ae2dfed0a@iki.fi
This commit is contained in:
Andres Freund
2021-01-25 12:15:10 -08:00
parent 881933f194
commit 55ef8555f0

View File

@ -1385,7 +1385,7 @@ SnapBuildFindSnapshot(SnapBuild *builder, XLogRecPtr lsn, xl_running_xacts *runn
* a) allow isolationtester to notice that we're currently waiting for * a) allow isolationtester to notice that we're currently waiting for
* something. * something.
* b) log a new xl_running_xacts record where it'd be helpful, without having * b) log a new xl_running_xacts record where it'd be helpful, without having
* to write for bgwriter or checkpointer. * to wait for bgwriter or checkpointer.
* --- * ---
*/ */
static void static void
@ -1414,7 +1414,7 @@ SnapBuildWaitSnapshot(xl_running_xacts *running, TransactionId cutoff)
/* /*
* All transactions we needed to finish finished - try to ensure there is * All transactions we needed to finish finished - try to ensure there is
* another xl_running_xacts record in a timely manner, without having to * another xl_running_xacts record in a timely manner, without having to
* write for bgwriter or checkpointer to log one. During recovery we * wait for bgwriter or checkpointer to log one. During recovery we
* can't enforce that, so we'll have to wait. * can't enforce that, so we'll have to wait.
*/ */
if (!RecoveryInProgress()) if (!RecoveryInProgress())