diff options
author | Michael Paquier <michael@paquier.xyz> | 2022-03-25 14:11:18 +0900 |
---|---|---|
committer | Michael Paquier <michael@paquier.xyz> | 2022-03-25 14:11:18 +0900 |
commit | ad8759bea06d2a0cac033f5ba551011663d9e716 (patch) | |
tree | 6917f18339e9cb55fb9a3b8ffb855e7cbe026cc9 /src | |
parent | 3e67a5cac6a50139bd29b96ab97496dbc1543d92 (diff) | |
download | postgresql-ad8759bea06d2a0cac033f5ba551011663d9e716.tar.gz postgresql-ad8759bea06d2a0cac033f5ba551011663d9e716.zip |
Fix typos in standby.c
xl_running_xacts exists, not xl_xact_running_xacts.
Author: Hou Zhijie
Discussion: https://postgr.es/m/OS0PR01MB57160D8B01097FFB5C175065941A9@OS0PR01MB5716.jpnprd01.prod.outlook.com
Diffstat (limited to 'src')
-rw-r--r-- | src/backend/storage/ipc/standby.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/backend/storage/ipc/standby.c b/src/backend/storage/ipc/standby.c index 27361ac8610..2850867323b 100644 --- a/src/backend/storage/ipc/standby.c +++ b/src/backend/storage/ipc/standby.c @@ -1273,10 +1273,10 @@ LogStandbySnapshot(void) /* * Record an enhanced snapshot of running transactions into WAL. * - * The definitions of RunningTransactionsData and xl_xact_running_xacts are - * similar. We keep them separate because xl_xact_running_xacts is a - * contiguous chunk of memory and never exists fully until it is assembled in - * WAL. The inserted records are marked as not being important for durability, + * The definitions of RunningTransactionsData and xl_running_xacts are + * similar. We keep them separate because xl_running_xacts is a contiguous + * chunk of memory and never exists fully until it is assembled in WAL. + * The inserted records are marked as not being important for durability, * to avoid triggering superfluous checkpoint / archiving activity. */ static XLogRecPtr |