Commit a9ba6195 authored by Tom Lane's avatar Tom Lane

Fix ordering/categorization of some recently-added system views.

Somebody added pg_replication_origin, pg_replication_origin_status and
pg_replication_slots to catalogs.sgml without a whole lot of concern for
either alphabetical order or the difference between a table and a view.
Clean up the mess.

Back-patch to 9.5, not so much because this is critical as because if
I don't it will result in a cross-branch divergence in release-9.5.sgml,
which would be a maintenance hazard.
parent 18a02ad2
This diff is collapsed.
...@@ -914,7 +914,7 @@ primary_conninfo = 'host=192.168.1.50 port=5432 user=foo password=foopass' ...@@ -914,7 +914,7 @@ primary_conninfo = 'host=192.168.1.50 port=5432 user=foo password=foopass'
</para> </para>
<para> <para>
Existing replication slots and their state can be seen in the Existing replication slots and their state can be seen in the
<link linkend="catalog-pg-replication-slots"><structname>pg_replication_slots</structname></link> <link linkend="view-pg-replication-slots"><structname>pg_replication_slots</structname></link>
view. view.
</para> </para>
<para> <para>
......
...@@ -324,7 +324,7 @@ $ pg_recvlogical -d postgres --slot test --drop-slot ...@@ -324,7 +324,7 @@ $ pg_recvlogical -d postgres --slot test --drop-slot
<title>System Catalogs Related to Logical Decoding</title> <title>System Catalogs Related to Logical Decoding</title>
<para> <para>
The <link linkend="catalog-pg-replication-slots"><structname>pg_replication_slots</structname></link> The <link linkend="view-pg-replication-slots"><structname>pg_replication_slots</structname></link>
view and the view and the
<link linkend="monitoring-stats-views-table"><structname>pg_stat_replication</structname></link> <link linkend="monitoring-stats-views-table"><structname>pg_stat_replication</structname></link>
view provide information about the current state of replication slots and view provide information about the current state of replication slots and
......
...@@ -2176,7 +2176,7 @@ Add GUC and storage parameter to set the maximum size of GIN pending list. ...@@ -2176,7 +2176,7 @@ Add GUC and storage parameter to set the maximum size of GIN pending list.
--> -->
<para> <para>
Report the processes holding replication slots in <link Report the processes holding replication slots in <link
linkend="catalog-pg-replication-slots"><structname>pg_replication_slots</></> linkend="view-pg-replication-slots"><structname>pg_replication_slots</></>
(Craig Ringer) (Craig Ringer)
</para> </para>
......
...@@ -66,7 +66,7 @@ ...@@ -66,7 +66,7 @@
<link linkend="pg-replication-origin-xact-setup"><function>pg_replication_origin_xact_setup()</function></link>. <link linkend="pg-replication-origin-xact-setup"><function>pg_replication_origin_xact_setup()</function></link>.
If that's done replication progress will persist in a crash safe If that's done replication progress will persist in a crash safe
manner. Replay progress for all replication origins can be seen in the manner. Replay progress for all replication origins can be seen in the
<link linkend="catalog-pg-replication-origin-status"> <link linkend="view-pg-replication-origin-status">
<structname>pg_replication_origin_status</structname> <structname>pg_replication_origin_status</structname>
</link> view. An individual origin's progress, e.g. when resuming </link> view. An individual origin's progress, e.g. when resuming
replication, can be acquired using replication, can be acquired using
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment