]> granicus.if.org Git - postgresql/commitdiff
The replication status values in pg_stat_replication was changed to
authorHeikki Linnakangas <heikki.linnakangas@iki.fi>
Wed, 31 Aug 2011 09:37:37 +0000 (12:37 +0300)
committerHeikki Linnakangas <heikki.linnakangas@iki.fi>
Wed, 31 Aug 2011 09:38:33 +0000 (12:38 +0300)
lowercase earlier, but documentation was not updated. Update the docs.

Fujii Masao

doc/src/sgml/config.sgml
doc/src/sgml/high-availability.sgml

index eed4e54c5f1b3d933a89e74f692072f696b6b4a0..e08c64c4a87a89c32c620f32b5f07204eb7f7df4 100644 (file)
@@ -2101,7 +2101,7 @@ SET ENABLE_SEQSCAN TO OFF;
         this standby server confirms receipt of their data.
         The synchronous standby will be the first standby named in this list
         that is both currently connected and streaming data in real-time
-        (as shown by a state of <literal>STREAMING</literal> in the
+        (as shown by a state of <literal>streaming</literal> in the
         <link linkend="monitoring-stats-views-table">
         <literal>pg_stat_replication</></link> view).
         Other standby servers appearing later in this list represent potential
index bb787dc396df63bc7bbd3226ffaa4984d8cd8bf4..f811d297d8bab5892ca653b3073729e323d2c952 100644 (file)
@@ -1028,14 +1028,14 @@ primary_conninfo = 'host=192.168.1.50 port=5432 user=foo password=foopass'
 
    <para>
     When a standby first attaches to the primary, it will not yet be properly
-    synchronized. This is described as <literal>CATCHUP</> mode. Once
+    synchronized. This is described as <literal>catchup</> mode. Once
     the lag between standby and primary reaches zero for the first time
-    we move to real-time <literal>STREAMING</> state.
+    we move to real-time <literal>streaming</> state.
     The catch-up duration may be long immediately after the standby has
     been created. If the standby is shut down, then the catch-up period
     will increase according to the length of time the standby has been down.
     The standby is only able to become a synchronous standby
-    once it has reached <literal>STREAMING</> state.
+    once it has reached <literal>streaming</> state.
    </para>
 
    <para>