Documentaion fix.

From: Kyotaro HORIGUCHI <horiguchi(dot)kyotaro(at)lab(dot)ntt(dot)co(dot)jp>
To: pgsql-hackers(at)lists(dot)postgresql(dot)org
Subject: Documentaion fix.
Date: 2018-07-31 10:09:09
Message-ID: 20180731.190909.42582169.horiguchi.kyotaro@lab.ntt.co.jp
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-hackers

Hello.

I found that an example output in the following page is not
correct for the version.

https://www.postgresql.org/docs/10/static/warm-standby.html

postgres=# SELECT * FROM pg_replication_slots;
> slot_name | slot_type | datoid | database | active | xmin | restart_lsn | confirmed_flush_lsn
> -------------+-----------+--------+----------+--------+------+-------------+---------------------
> node_a_slot | physical | | | f | | |

The correct one is

> slot_name | plugin | slot_type | datoid | database | temporary | active | active_pid | xmin | catalog_xmin | restart_lsn | confirmed_flush_lsn
> -------------+--------+-----------+--------+----------+-----------+--------+------------+------+--------------+-------------+---------------------
> node_a_slot | | physical | | | f | f | | | | |

From 9.4, 9.5, 9.6 and 10 and later have an example output wrong
in individual way of the version. I'm not sure how the
documentation was updated but each of the attached patches fixes
the version designated in the file name.

But, just fixing it makes the line seemingly a bit too long..

regards.

--
Kyotaro Horiguchi
NTT Open Source Software Center

Attachment Content-Type Size
0001-Documentation-fix-of-Log-Shipping_9_4.patch text/x-patch 1.4 KB
0001-Documentation-fix-of-Log-Shipping_9_5.patch text/x-patch 1.4 KB
0001-Documentation-fix-of-Log-Shipping_9_6.patch text/x-patch 1.6 KB
0001-Documentation-fix-of-Log-Shipping_mst_10.patch text/x-patch 1.6 KB

Responses

Browse pgsql-hackers by date

  From Date Subject
Next Message Yugo Nagata 2018-07-31 10:32:12 Re: Fw: Windows 10 got stuck with PostgreSQL at starting up. Adding delay lets it avoid.
Previous Message Yamaji, Ryo 2018-07-31 09:12:21 RE: [HACKERS] Cached plans and statement generalization