Skip to content

Commit b0d4b3c

Browse files
committed
relnotes: adjust sections for various items
Also improve postgres_fdw.application_name Reported-by: Justin Pryzby, Tatsuo Ishii Diagnosed-by: 20220510210235.GD19626@telsasoft.com
1 parent 40131af commit b0d4b3c

File tree

1 file changed

+59
-68
lines changed

1 file changed

+59
-68
lines changed

doc/src/sgml/release-15.sgml

Lines changed: 59 additions & 68 deletions
Original file line numberDiff line numberDiff line change
@@ -253,6 +253,21 @@ Some platforms disallowed trailing periods.
253253
</para>
254254
</listitem>
255255

256+
<!--
257+
Author: Bruce Momjian <bruce@momjian.us>
258+
2021-08-03 [95ab1e0a9] interval: round values when spilling to months
259+
-->
260+
261+
<listitem>
262+
<para>
263+
When specifying fractional interval values in units greater than months, round to the nearest month (Bruce Momjian)
264+
</para>
265+
266+
<para>
267+
For example, report '1.99 years' as '2 years', not '1 year 11 months'.
268+
</para>
269+
</listitem>
270+
256271
<!--
257272
Author: Tom Lane <tgl@sss.pgh.pa.us>
258273
2022-02-28 [54bd1e43c] Handle integer overflow in interval justification functi
@@ -314,6 +329,21 @@ UPDATE and DELETE perform SELECT, so require the subscription owner to have tabl
314329
</para>
315330
</listitem>
316331

332+
<!--
333+
Author: Tom Lane <tgl@sss.pgh.pa.us>
334+
2021-07-27 [48c5c9068] Use the "pg_temp" schema alias in EXPLAIN and related ou
335+
-->
336+
337+
<listitem>
338+
<para>
339+
When EXPLAIN references the temporary object schema, refer to it as "pg_temp" (Amul Sul)
340+
</para>
341+
342+
<para>
343+
Previously the actual schema name was used.
344+
</para>
345+
</listitem>
346+
317347
<!--
318348
Author: Tom Lane <tgl@sss.pgh.pa.us>
319349
2022-02-28 [2e517818f] Fix SPI's handling of errors during transaction commit.
@@ -698,7 +728,7 @@ Author: Tomas Vondra <tomas.vondra@postgresql.org>
698728

699729
<listitem>
700730
<para>
701-
Allow extended statistics to record statistics for a parent with all it children (Tomas Vondra, Justin Pryzby)
731+
Allow extended statistics to record statistics for a parent with all its children (Tomas Vondra, Justin Pryzby)
702732
</para>
703733

704734
<para>
@@ -1128,17 +1158,6 @@ Allow "postgres -C" to properly report runtime-computed values (Nathan Bossart)
11281158
<para>
11291159
Previously runtime-computed values data_checksums, wal_segment_size, and data_directory_mode would report values that would not be accurate on the running server. However, this does not work on a running server.
11301160
</para>
1131-
</listitem>
1132-
1133-
<!--
1134-
Author: Michael Paquier <michael@paquier.xyz>
1135-
2022-01-31 [d10e41d42] Introduce pg_settings_get_flags() to find flags associat
1136-
-->
1137-
1138-
<listitem>
1139-
<para>
1140-
Add function pg_settings_get_flags() to get the flags of server-side variables (Justin Pryzby)
1141-
</para>
11421161
</listitem>
11431162

11441163
</itemizedlist>
@@ -1478,21 +1497,6 @@ Previously, all of the columns in the foreign key were always affected.
14781497
</para>
14791498
</listitem>
14801499

1481-
<!--
1482-
Author: Tom Lane <tgl@sss.pgh.pa.us>
1483-
2021-07-27 [48c5c9068] Use the "pg_temp" schema alias in EXPLAIN and related ou
1484-
-->
1485-
1486-
<listitem>
1487-
<para>
1488-
When EXPLAIN references the temporary object schema, refer to it as "pg_temp" (Amul Sul)
1489-
</para>
1490-
1491-
<para>
1492-
Previously the actual schema name was used.
1493-
</para>
1494-
</listitem>
1495-
14961500
<!--
14971501
Author: Michael Paquier <michael@paquier.xyz>
14981502
2021-07-28 [b0483263d] Add support for SET ACCESS METHOD in ALTER TABLE
@@ -1539,21 +1543,6 @@ This allows rounding of values to the left of the decimal point, e.g., '1234'::n
15391543
</para>
15401544
</listitem>
15411545

1542-
<!--
1543-
Author: Bruce Momjian <bruce@momjian.us>
1544-
2021-08-03 [95ab1e0a9] interval: round values when spilling to months
1545-
-->
1546-
1547-
<listitem>
1548-
<para>
1549-
When specifying fractional interval values in units greater than months, round to the nearest month (Bruce Momjian)
1550-
</para>
1551-
1552-
<para>
1553-
For example, report '1.99 years' as '2 years', not '1 year 11 months'.
1554-
</para>
1555-
</listitem>
1556-
15571546
<!--
15581547
Author: Tom Lane <tgl@sss.pgh.pa.us>
15591548
2022-04-02 [e39f99046] Fix overflow hazards in interval input and output conver
@@ -2196,6 +2185,17 @@ Improve pg_receivewal's ability to restart at the proper WAL location (Ronan Dun
21962185
Previously, pg_receivewal would start based on the WAL file stored in the local archive directory, or at the sending server's current WAL flush location. With this change, if the sending server is running
21972186
Postgres 15 or later, the local archive directory is empty, and a replication slot is specified, the replication slot's restart point will be used.
21982187
</para>
2188+
</listitem>
2189+
2190+
<!--
2191+
Author: Tatsuo Ishii <ishii@postgresql.org>
2192+
2022-03-23 [4a39f87ac] Allow pgbench to retry in some cases.
2193+
-->
2194+
2195+
<listitem>
2196+
<para>
2197+
Allow pgbench to retry after serialization and deadlock failures (Yugo Nagata, Marina Polyakova)
2198+
</para>
21992199
</listitem>
22002200

22012201
</itemizedlist>
@@ -2614,6 +2614,17 @@ Allow extensions to define their own WAL resource managers (Jeff Davis)
26142614
</para>
26152615
</listitem>
26162616

2617+
<!--
2618+
Author: Michael Paquier <michael@paquier.xyz>
2619+
2022-01-31 [d10e41d42] Introduce pg_settings_get_flags() to find flags associat
2620+
-->
2621+
2622+
<listitem>
2623+
<para>
2624+
Add function pg_settings_get_flags() to get the flags of server-side variables (Justin Pryzby)
2625+
</para>
2626+
</listitem>
2627+
26172628
<!--
26182629
Author: Thomas Munro <tmunro@postgresql.org>
26192630
2022-01-15 [7170f2159] Allow "in place" tablespaces.
@@ -2632,7 +2643,7 @@ Author: Robert Haas <rhaas@postgresql.org>
26322643

26332644
<listitem>
26342645
<para>
2635-
Export all server variables using PGDLLIMPORT on Windows (Robert Haas)
2646+
Export all server variables on Windows using PGDLLIMPORT (Robert Haas)
26362647
</para>
26372648

26382649
<para>
@@ -2796,17 +2807,6 @@ Indicate the permissive/enforcing state in sepgsql log messages (Dave Page)
27962807
</para>
27972808
</listitem>
27982809

2799-
<!--
2800-
Author: Tatsuo Ishii <ishii@postgresql.org>
2801-
2022-03-23 [4a39f87ac] Allow pgbench to retry in some cases.
2802-
-->
2803-
2804-
<listitem>
2805-
<para>
2806-
Allow pgbench to retry after serialization and deadlock failures (Yugo Nagata, Marina Polyakova)
2807-
</para>
2808-
</listitem>
2809-
28102810
<!--
28112811
Author: Michael Paquier <michael@paquier.xyz>
28122812
2021-07-12 [127404fbe] pageinspect: Improve page_header() for pages of 32kB
@@ -2843,19 +2843,6 @@ Allow postgres_fdw to push down CASE expressions (Alexander Pyhalov)
28432843
<!--
28442844
Author: Fujii Masao <fujii@postgresql.org>
28452845
2021-09-07 [449ab6350] postgres_fdw: Allow application_name of remote connectio
2846-
-->
2847-
2848-
<listitem>
2849-
<para>
2850-
Add server variable postgres_fdw.application_name to control the application name of postgres_fdw connections (Hayato Kuroda)
2851-
</para>
2852-
2853-
<para>
2854-
Previously the remote application_name could only be set on the remote server or the postgres_fdw connection specification.
2855-
</para>
2856-
</listitem>
2857-
2858-
<!--
28592846
Author: Fujii Masao <fujii@postgresql.org>
28602847
2021-12-24 [6e0cb3dec] postgres_fdw: Allow postgres_fdw.application_name to inc
28612848
Author: Fujii Masao <fujii@postgresql.org>
@@ -2864,7 +2851,11 @@ Author: Fujii Masao <fujii@postgresql.org>
28642851

28652852
<listitem>
28662853
<para>
2867-
Allow informational escape sequences to be used in postgres_fdw's application name (Hayato Kuroda, Fujii Masao)
2854+
Add server variable postgres_fdw.application_name to control the application name of postgres_fdw connections (Hayato Kuroda)
2855+
</para>
2856+
2857+
<para>
2858+
Previously the remote application_name could only be set on the remote server or via postgres_fdw connection specification. postgres_fdw.application_name also supports escape sequences for customization.
28682859
</para>
28692860
</listitem>
28702861

0 commit comments

Comments
 (0)