diff options
author | Fujii Masao | 2025-07-03 07:06:26 +0000 |
---|---|---|
committer | Fujii Masao | 2025-07-03 07:07:23 +0000 |
commit | 4c7d2c2062001509b1dab7c54f75842ab8a8bb5e (patch) | |
tree | b8042acc2ddfe33712dd3213cf0c5d0666fcca0a | |
parent | 0ee7f51a8b4e0a23014d0bff24465317acdfd1a1 (diff) |
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 <[email protected]>
Reviewed-by: Nisha Moond <[email protected]>
Discussion: https://postgr.es/m/[email protected]
Backpatch-through: 13
-rw-r--r-- | doc/src/sgml/catalogs.sgml | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/doc/src/sgml/catalogs.sgml b/doc/src/sgml/catalogs.sgml index 129e3c0f2bb..a04fc6dd526 100644 --- a/doc/src/sgml/catalogs.sgml +++ b/doc/src/sgml/catalogs.sgml @@ -11291,8 +11291,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> |