diff options
Diffstat (limited to 'doc/src/sgml/custom-rmgr.sgml')
-rw-r--r-- | doc/src/sgml/custom-rmgr.sgml | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/doc/src/sgml/custom-rmgr.sgml b/doc/src/sgml/custom-rmgr.sgml index acf5077d751..2893016cef3 100644 --- a/doc/src/sgml/custom-rmgr.sgml +++ b/doc/src/sgml/custom-rmgr.sgml @@ -66,7 +66,7 @@ typedef struct RmgrData * Register a new custom WAL resource manager. * * Resource manager IDs must be globally unique across all extensions. Refer - * to https://wiki.postgresql.org/wiki/CustomWALResourceManager to reserve a + * to https://wiki.postgresql.org/wiki/CustomWALResourceManagers to reserve a * unique RmgrId for your extension, to avoid conflicts with other extension * developers. During development, use RM_EXPERIMENTAL_ID to avoid needlessly * reserving a new ID. @@ -76,8 +76,8 @@ extern void RegisterCustomRmgr(RmgrId rmid, RmgrData *rmgr); <function>RegisterCustomRmgr</function> must be called from the extension module's <link linkend="xfunc-c-dynload">_PG_init</link> function. While developing a new extension, use <literal>RM_EXPERIMENTAL_ID</literal> - for <parameter>rmid</parameter>. When you ready to release the extension to - users, reserve a new resource manager ID at the <ulink + for <parameter>rmid</parameter>. When you are ready to release the extension + to users, reserve a new resource manager ID at the <ulink url="https://wiki.postgresql.org/wiki/CustomWALResourceManagers">Custom WAL Resource Manager</ulink> page. </para> |