diff options
author | Alvaro Herrera | 2018-08-03 20:34:59 +0000 |
---|---|---|
committer | Alvaro Herrera | 2018-08-03 20:34:59 +0000 |
commit | d9c99c666b1124bd9adf5c29fd0ca9815f14ceb8 (patch) | |
tree | a5914891a0a152936b8a1dc43b41600c5b8c4013 /doc/src | |
parent | ed5d8196c0cc769f9e893a59d184ca7efa1fe20a (diff) |
Fix pg_replication_slot example output
The example output of pg_replication_slot is wrong. Correct it and make
the output stable by explicitly listing columns to output.
Author: Kyotaro Horiguchi <horiguchi.kyotaro@lab.ntt.co.jp>
Reviewed-by: Michael Paquier <michael@paquier.xyz>
Discussion: https://postgr.es/m/20180731.190909.42582169.horiguchi.kyotaro@lab.ntt.co.jp
Diffstat (limited to 'doc/src')
-rw-r--r-- | doc/src/sgml/high-availability.sgml | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/doc/src/sgml/high-availability.sgml b/doc/src/sgml/high-availability.sgml index 2773cec9b8d..23de642a0c1 100644 --- a/doc/src/sgml/high-availability.sgml +++ b/doc/src/sgml/high-availability.sgml @@ -960,10 +960,10 @@ postgres=# SELECT * FROM pg_create_physical_replication_slot('node_a_slot'); -------------+----- node_a_slot | -postgres=# SELECT * FROM pg_replication_slots; - slot_name | slot_type | datoid | database | active | xmin | restart_lsn | confirmed_flush_lsn --------------+-----------+--------+----------+--------+------+-------------+--------------------- - node_a_slot | physical | | | f | | | +postgres=# SELECT slot_name, slot_type, active FROM pg_replication_slots; + slot_name | slot_type | active +-------------+-----------+-------- + node_a_slot | physical | f (1 row) </programlisting> To configure the standby to use this slot, <varname>primary_slot_name</> |