Skip to content

Commit f79ee34

Browse files
committed
doc: update PG 16 relnotes for pg_walinspect changes
Reported-by: Peter Geoghegan
1 parent 428c0ca commit f79ee34

File tree

1 file changed

+60
-68
lines changed

1 file changed

+60
-68
lines changed

doc/src/sgml/release-16.sgml

Lines changed: 60 additions & 68 deletions
Original file line numberDiff line numberDiff line change
@@ -91,6 +91,17 @@ Processing such indexes is still possible using REINDEX SYSTEM.
9191
</para>
9292
</listitem>
9393

94+
<!--
95+
Author: Michael Paquier <michael@paquier.xyz>
96+
2023-03-14 [5c1b66280] Rework design of functions in pg_walinspect
97+
-->
98+
99+
<listitem>
100+
<para>
101+
Remove pg_walinspect functions pg_get_wal_records_info_till_end_of_wal() and pg_get_wal_stats_till_end_of_wal().
102+
</para>
103+
</listitem>
104+
94105
<!--
95106
Author: Michael Paquier <michael@paquier.xyz>
96107
2023-03-17 [98ae2c84a] libpq: Remove code for SCM credential authentication
@@ -2848,6 +2859,55 @@ Previously constants appeared instead of placeholders, e.g., $1.
28482859
</para>
28492860
</listitem>
28502861

2862+
<!--
2863+
Author: Michael Paquier <michael@paquier.xyz>
2864+
2023-01-23 [c31cf1c03] pg_walinspect: Add pg_get_wal_fpi_info()
2865+
Author: Michael Paquier <michael@paquier.xyz>
2866+
2023-03-10 [9ecb134a9] pg_walinspect: pg_get_wal_fpi_info() -> pg_get_wal_block
2867+
Author: Peter Geoghegan <pg@bowt.ie>
2868+
2023-03-30 [122376f02] Show record information in pg_get_wal_block_info.
2869+
Author: Peter Geoghegan <pg@bowt.ie>
2870+
2023-03-31 [df4f3ab51] Add show_data option to pg_get_wal_block_info.
2871+
-->
2872+
2873+
<listitem>
2874+
<para>
2875+
Add pg_walinspect function pg_get_wal_block_info() to report WAL block information (Michael Paquier, Melanie Plageman, Bharath Rupireddy)
2876+
</para>
2877+
</listitem>
2878+
2879+
<!--
2880+
Author: Michael Paquier <michael@paquier.xyz>
2881+
2023-03-14 [5c1b66280] Rework design of functions in pg_walinspect
2882+
-->
2883+
2884+
<listitem>
2885+
<para>
2886+
Change how pg_walinspect functions pg_get_wal_records_info(), pg_get_wal_stats(), and pg_get_wal_block_info() interpret ending LSNs (Bharath Rupireddy)
2887+
</para>
2888+
2889+
<para>
2890+
Previously ending LSNs which represent nonexistent WAL locations would generate an error, while they will now be interpreted as the end of the WAL.
2891+
</para>
2892+
</listitem>
2893+
2894+
<!--
2895+
Author: Peter Geoghegan <pg@bowt.ie>
2896+
2023-04-07 [7d8219a44] Show more detail in heapam rmgr descriptions.
2897+
Author: Peter Geoghegan <pg@bowt.ie>
2898+
2023-04-07 [1c453cfd8] Show more detail in nbtree rmgr descriptions.
2899+
Author: Peter Geoghegan <pg@bowt.ie>
2900+
2023-04-11 [96149a180] Fix Heap rmgr's desc output for infobits arrays.
2901+
Author: Peter Geoghegan <pg@bowt.ie>
2902+
2023-04-19 [50547a3fa] Fix wal_consistency_checking enhanced desc output.
2903+
-->
2904+
2905+
<listitem>
2906+
<para>
2907+
Improve descriptions of pg_walinspect WAL record descriptions (Melanie Plageman, Peter Geoghegan)
2908+
</para>
2909+
</listitem>
2910+
28512911
<!--
28522912
Author: Tom Lane <tgl@sss.pgh.pa.us>
28532913
2023-01-02 [1fd3dd204] Add bt_multi_page_stats() function to contrib/pageinspec
@@ -2994,74 +3054,6 @@ Author: Andres Freund <andres@anarazel.de>
29943054
<para>
29953055
Have postgres_fdw and dblink handle interrupts during connection establishment (Andres Freund)
29963056
</para>
2997-
</listitem>
2998-
2999-
</itemizedlist>
3000-
3001-
</sect4>
3002-
3003-
<sect4 id="release-16-walinspect">
3004-
<title><link linkend="pgwalinspect"><application>pg_walinspect</application></link></title>
3005-
3006-
<itemizedlist>
3007-
3008-
<!--
3009-
Author: Michael Paquier <michael@paquier.xyz>
3010-
2023-01-23 [c31cf1c03] pg_walinspect: Add pg_get_wal_fpi_info()
3011-
Author: Michael Paquier <michael@paquier.xyz>
3012-
2023-03-10 [9ecb134a9] pg_walinspect: pg_get_wal_fpi_info() -> pg_get_wal_block
3013-
-->
3014-
3015-
<listitem>
3016-
<para>
3017-
Add pg_walinspect function pg_get_wal_block() to report WAL block information (Michael Paquier, Melanie Plageman, Bharath Rupireddy)
3018-
</para>
3019-
</listitem>
3020-
3021-
<!--
3022-
Author: Peter Geoghegan <pg@bowt.ie>
3023-
2023-03-30 [122376f02] Show record information in pg_get_wal_block_info.
3024-
Author: Peter Geoghegan <pg@bowt.ie>
3025-
2023-03-31 [df4f3ab51] Add show_data option to pg_get_wal_block_info.
3026-
-->
3027-
3028-
<listitem>
3029-
<para>
3030-
Add output fields to pg_walinspect's function pg_get_wal_block_info() (Bharath Rupireddy, Peter Geoghegan)
3031-
</para>
3032-
</listitem>
3033-
3034-
<!--
3035-
Author: Michael Paquier <michael@paquier.xyz>
3036-
2023-03-14 [5c1b66280] Rework design of functions in pg_walinspect
3037-
-->
3038-
3039-
<listitem>
3040-
<para>
3041-
Change how pg_walinspect functions pg_get_wal_records_info(), pg_get_wal_stats(), and pg_get_wal_block_info() interpret ending LSNs (Bharath Rupireddy)
3042-
</para>
3043-
3044-
<para>
3045-
Previously ending LSNs which represent nonexistent WAL locations would generate an error, while they will now be interpreted as the end of the WAL. Functions pg_get_wal_records_info_till_end_of_wal() and
3046-
pg_get_wal_stats_till_end_of_wal() have been removed.
3047-
</para>
3048-
</listitem>
3049-
3050-
<!--
3051-
Author: Peter Geoghegan <pg@bowt.ie>
3052-
2023-04-07 [7d8219a44] Show more detail in heapam rmgr descriptions.
3053-
Author: Peter Geoghegan <pg@bowt.ie>
3054-
2023-04-07 [1c453cfd8] Show more detail in nbtree rmgr descriptions.
3055-
Author: Peter Geoghegan <pg@bowt.ie>
3056-
2023-04-11 [96149a180] Fix Heap rmgr's desc output for infobits arrays.
3057-
Author: Peter Geoghegan <pg@bowt.ie>
3058-
2023-04-19 [50547a3fa] Fix wal_consistency_checking enhanced desc output.
3059-
-->
3060-
3061-
<listitem>
3062-
<para>
3063-
Improve descriptions of pg_walinspect WAL record descriptions (Melanie Plageman, Peter Geoghegan)
3064-
</para>
30653057
</listitem>
30663058

30673059
</itemizedlist>

0 commit comments

Comments
 (0)