You signed in with another tab or window.Reload to refresh your session.You signed out in another tab or window.Reload to refresh your session.You switched accounts on another tab or window.Reload to refresh your session.Dismiss alert
* document to_reg* accepting OIDs* document pg_log_standby_snapshot()* document pg_input_is_valid() and pg_input_error_info()* handle rename of function to pg_split_walfile_name()* fix character encoding problem for Przemyslaw Sztoch* remove partition sectionReported-by: jian he, Tom Lane, Bertrand Drouvot
Copy file name to clipboardExpand all lines: doc/src/sgml/release-16.sgml
+64-38Lines changed: 64 additions & 38 deletions
Original file line number
Diff line number
Diff line change
@@ -91,6 +91,21 @@ Processing such indexes is still possible using REINDEX SYSTEM and reindexedb --
91
91
</para>
92
92
</listitem>
93
93
94
+
<!--
95
+
Author: Tom Lane <tgl@sss.pgh.pa.us>
96
+
2023-01-11 [8bf6ec3ba] Improve handling of inherited GENERATED expressions.
97
+
-->
98
+
99
+
<listitem>
100
+
<para>
101
+
Tighten GENERATED expression restrictions on inherited and partitioned tables (Amit Langote, Tom Lane)
102
+
</para>
103
+
104
+
<para>
105
+
Columns of parent/partitioned and child/partition tables must all have the same generation status, though now the actual generation expressions can be different.
106
+
</para>
107
+
</listitem>
108
+
94
109
<!--
95
110
Author: Michael Paquier <michael@paquier.xyz>
96
111
2023-03-14 [5c1b66280] Rework design of functions in pg_walinspect
@@ -198,41 +213,6 @@ Remove symbolic links for the postmaster binary (Peter Eisentraut)
2022-08-02 [3592e0ff9] Have ExecFindPartition cache the last found partition
209
-
-->
210
-
211
-
<listitem>
212
-
<para>
213
-
Improve performance by caching RANGE and LIST partition lookups (Amit Langote, Hou Zhijie, David Rowley)
214
-
</para>
215
-
</listitem>
216
-
217
-
<!--
218
-
Author: Tom Lane <tgl@sss.pgh.pa.us>
219
-
2023-01-11 [8bf6ec3ba] Improve handling of inherited GENERATED expressions.
220
-
-->
221
-
222
-
<listitem>
223
-
<para>
224
-
Tighten GENERATED expression restrictions on inherited and partitioned tables (Amit Langote, Tom Lane)
225
-
</para>
226
-
227
-
<para>
228
-
Columns of parent/partitioned and child/partition tables must all have the same generation status, though now the actual generation expressions can be different.
229
-
</para>
230
-
</listitem>
231
-
232
-
</itemizedlist>
233
-
234
-
</sect4>
235
-
236
216
<sect4 id="release-16-optimizer">
237
217
<title>Optimizer</title>
238
218
@@ -386,6 +366,17 @@ Allow aggregate functions string_agg() and array_agg() to be parallelized (David
386
366
</para>
387
367
</listitem>
388
368
369
+
<!--
370
+
Author: David Rowley <drowley@postgresql.org>
371
+
2022-08-02 [3592e0ff9] Have ExecFindPartition cache the last found partition
372
+
-->
373
+
374
+
<listitem>
375
+
<para>
376
+
Improve performance by caching RANGE and LIST partition lookups (Amit Langote, Hou Zhijie, David Rowley)