From: Fujii Masao Date: Thu, 3 Jul 2025 07:03:19 +0000 (+0900) Subject: doc: Remove incorrect note about wal_status in pg_replication_slots. X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=4ef4b9ba77375221c597f590cde1a1adc10453ca;p=thirdparty%2Fpostgresql.git 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 Reviewed-by: Nisha Moond Discussion: https://postgr.es/m/c9d23cdc-b5dd-455a-8ee9-f1f24d701d89@oss.nttdata.com Backpatch-through: 13 --- diff --git a/doc/src/sgml/system-views.sgml b/doc/src/sgml/system-views.sgml index e0b53ad3157..9b8d07b2b71 100644 --- a/doc/src/sgml/system-views.sgml +++ b/doc/src/sgml/system-views.sgml @@ -2491,8 +2491,7 @@ SELECT * FROM pg_locks pl LEFT JOIN pg_prepared_xacts ppx The last two states are seen only when is - non-negative. If restart_lsn is NULL, this - field is null. + non-negative.