diff options
author | Amit Kapila <akapila@postgresql.org> | 2022-08-30 09:16:41 +0530 |
---|---|---|
committer | Amit Kapila <akapila@postgresql.org> | 2022-08-30 09:16:41 +0530 |
commit | c98b6acdb252546e9bea0b9a37d95ca63d2ff0fa (patch) | |
tree | ac4092df7633766a841438fb50b7b24f484fb687 /src | |
parent | f6c5edb8abcac04eb3eac6da356e59d399b2bcef (diff) | |
download | postgresql-c98b6acdb252546e9bea0b9a37d95ca63d2ff0fa.tar.gz postgresql-c98b6acdb252546e9bea0b9a37d95ca63d2ff0fa.zip |
Update the comment in rmgrlist.h to match it to the code.
Author: Hayato Kuroda
Reviwed-by: Amit Kapila
Discussion: https://postgr.es/m/TYAPR01MB58665F20F412EDF27B0759CFF5769@TYAPR01MB5866.jpnprd01.prod.outlook.com
Diffstat (limited to 'src')
-rw-r--r-- | src/include/access/rmgrlist.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/include/access/rmgrlist.h b/src/include/access/rmgrlist.h index 9a74721c97c..000bcbfdaf2 100644 --- a/src/include/access/rmgrlist.h +++ b/src/include/access/rmgrlist.h @@ -24,7 +24,7 @@ * Changes to this list possibly need an XLOG_PAGE_MAGIC bump. */ -/* symbol name, textual name, redo, desc, identify, startup, cleanup */ +/* symbol name, textual name, redo, desc, identify, startup, cleanup, mask, decode */ PG_RMGR(RM_XLOG_ID, "XLOG", xlog_redo, xlog_desc, xlog_identify, NULL, NULL, NULL, xlog_decode) PG_RMGR(RM_XACT_ID, "Transaction", xact_redo, xact_desc, xact_identify, NULL, NULL, NULL, xact_decode) PG_RMGR(RM_SMGR_ID, "Storage", smgr_redo, smgr_desc, smgr_identify, NULL, NULL, NULL, NULL) |