diff options
author | Fujii Masao <fujii@postgresql.org> | 2025-07-03 16:03:19 +0900 |
---|---|---|
committer | Fujii Masao <fujii@postgresql.org> | 2025-07-03 16:03:19 +0900 |
commit | 170673a22f28bd6a1d3fa56e23cd74dcbcb60c17 (patch) | |
tree | b157659077b395c8303dd04678caa91a7c5e0268 /doc/src | |
parent | bc2f348e87c02de63647dbe290d64ff088880dbe (diff) | |
download | postgresql-170673a22f28bd6a1d3fa56e23cd74dcbcb60c17.tar.gz postgresql-170673a22f28bd6a1d3fa56e23cd74dcbcb60c17.zip |
doc: Remove incorrect note about wal_status in pg_replication_slots.
The documentation previously stated that the wal_status column is NULL
if restart_lsn is NULL in the pg_replication_slots view. This is incorrect,
and wal_status can be "lost" even when restart_lsn is NULL.
This commit removes the incorrect description.
Back-patched to all supported versions.
Author: Fujii Masao <masao.fujii@gmail.com>
Reviewed-by: Nisha Moond <nisha.moond412@gmail.com>
Discussion: https://postgr.es/m/c9d23cdc-b5dd-455a-8ee9-f1f24d701d89@oss.nttdata.com
Backpatch-through: 13
Diffstat (limited to 'doc/src')
-rw-r--r-- | doc/src/sgml/system-views.sgml | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/doc/src/sgml/system-views.sgml b/doc/src/sgml/system-views.sgml index 986ae1f543d..82825db03bb 100644 --- a/doc/src/sgml/system-views.sgml +++ b/doc/src/sgml/system-views.sgml @@ -2832,8 +2832,7 @@ SELECT * FROM pg_locks pl LEFT JOIN pg_prepared_xacts ppx </itemizedlist> The last two states are seen only when <xref linkend="guc-max-slot-wal-keep-size"/> is - non-negative. If <structfield>restart_lsn</structfield> is NULL, this - field is null. + non-negative. </para></entry> </row> |