aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorMichael Paquier <michael@paquier.xyz>2020-10-08 14:06:12 +0900
committerMichael Paquier <michael@paquier.xyz>2020-10-08 14:06:12 +0900
commitb90b79e1409b7cbffcadf89ae2e85c7ba1332818 (patch)
tree1daecb00f9d3dad2ed203ab011b14a06b527312d /src
parent2a7316458164369436e252e5e60a5957b17103c3 (diff)
downloadpostgresql-b90b79e1409b7cbffcadf89ae2e85c7ba1332818.tar.gz
postgresql-b90b79e1409b7cbffcadf89ae2e85c7ba1332818.zip
Fix typo in multixact.c
AtEOXact_MultiXact() was referenced in two places with an incorrect routine name. Author: Hou Zhijie Discussion: https://postgr.es/m/1b41e9311e8f474cb5a360292f0b3cb1@G08CNEXMBPEKD05.g08.fujitsu.local
Diffstat (limited to 'src')
-rw-r--r--src/backend/access/transam/multixact.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/backend/access/transam/multixact.c b/src/backend/access/transam/multixact.c
index a2ce617c8ce..6ccdc5b58cb 100644
--- a/src/backend/access/transam/multixact.c
+++ b/src/backend/access/transam/multixact.c
@@ -1742,7 +1742,7 @@ PostPrepare_MultiXact(TransactionId xid)
OldestVisibleMXactId[MyBackendId] = InvalidMultiXactId;
/*
- * Discard the local MultiXactId cache like in AtEOX_MultiXact
+ * Discard the local MultiXactId cache like in AtEOXact_MultiXact.
*/
MXactContext = NULL;
dlist_init(&MXactCache);
@@ -1772,7 +1772,7 @@ multixact_twophase_recover(TransactionId xid, uint16 info,
/*
* multixact_twophase_postcommit
- * Similar to AtEOX_MultiXact but for COMMIT PREPARED
+ * Similar to AtEOXact_MultiXact but for COMMIT PREPARED
*/
void
multixact_twophase_postcommit(TransactionId xid, uint16 info,