diff options
author | Michael Paquier <michael@paquier.xyz> | 2022-02-10 10:45:14 +0900 |
---|---|---|
committer | Michael Paquier <michael@paquier.xyz> | 2022-02-10 10:45:14 +0900 |
commit | 0147fc7c8c92ee22910f40b1740425f43382bc95 (patch) | |
tree | c1b165dd8ca9fbb712c5ba37912ea31e0e11c88c /src/backend/access/transam | |
parent | 4567596316d186c6e61c72df013797266fcac2f7 (diff) | |
download | postgresql-0147fc7c8c92ee22910f40b1740425f43382bc95.tar.gz postgresql-0147fc7c8c92ee22910f40b1740425f43382bc95.zip |
Fix typo in multixact.c
Introduced in aa64f23.
Author: Nathan Bossart
Discussion: https://postgr.es/m/20220209175338.GB1627503@nathanxps13
Diffstat (limited to 'src/backend/access/transam')
-rw-r--r-- | src/backend/access/transam/multixact.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/backend/access/transam/multixact.c b/src/backend/access/transam/multixact.c index f00c2725212..6a70d497380 100644 --- a/src/backend/access/transam/multixact.c +++ b/src/backend/access/transam/multixact.c @@ -285,7 +285,7 @@ typedef struct MultiXactStateData * Pointers to the state data in shared memory * * The index of the last element of the OldestMemberMXactId and - * OldestVisibleMXacId arrays can be obtained with GetMaxOldestSlot(). + * OldestVisibleMXactId arrays can be obtained with GetMaxOldestSlot(). */ static MultiXactStateData *MultiXactState; static MultiXactId *OldestMemberMXactId; |