diff options
author | Robert Haas <rhaas@postgresql.org> | 2014-02-24 10:38:45 -0500 |
---|---|---|
committer | Robert Haas <rhaas@postgresql.org> | 2014-02-24 10:38:45 -0500 |
commit | 6615e77439a3c8c26c0091a616f00eefdea22604 (patch) | |
tree | 25ab760c208a112ef4c345d3df1932014480f355 /doc/src | |
parent | bb818b53d47c77eb58bfce57516fab93d0e6965d (diff) | |
download | postgresql-6615e77439a3c8c26c0091a616f00eefdea22604.tar.gz postgresql-6615e77439a3c8c26c0091a616f00eefdea22604.zip |
Use pg_lsn data type in pg_stat_replication, too.
Michael Paquier, per a suggestion from Andres Freund
Diffstat (limited to 'doc/src')
-rw-r--r-- | doc/src/sgml/monitoring.sgml | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/doc/src/sgml/monitoring.sgml b/doc/src/sgml/monitoring.sgml index a37e6b6f33b..370857a0e8c 100644 --- a/doc/src/sgml/monitoring.sgml +++ b/doc/src/sgml/monitoring.sgml @@ -1490,24 +1490,24 @@ postgres: <replaceable>user</> <replaceable>database</> <replaceable>host</> <re </row> <row> <entry><structfield>sent_location</></entry> - <entry><type>text</></entry> + <entry><type>pg_lsn</></entry> <entry>Last transaction log position sent on this connection</entry> </row> <row> <entry><structfield>write_location</></entry> - <entry><type>text</></entry> + <entry><type>pg_lsn</></entry> <entry>Last transaction log position written to disk by this standby server</entry> </row> <row> <entry><structfield>flush_location</></entry> - <entry><type>text</></entry> + <entry><type>pg_lsn</></entry> <entry>Last transaction log position flushed to disk by this standby server</entry> </row> <row> <entry><structfield>replay_location</></entry> - <entry><type>text</></entry> + <entry><type>pg_lsn</></entry> <entry>Last transaction log position replayed into the database on this standby server</entry> </row> |