1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
1738
1739
1740
1741
1742
1743
1744
1745
1746
1747
1748
1749
1750
1751
1752
1753
1754
1755
1756
1757
1758
1759
1760
1761
1762
1763
1764
1765
1766
1767
1768
1769
1770
1771
1772
1773
1774
1775
1776
1777
1778
1779
1780
1781
1782
1783
1784
1785
1786
1787
1788
1789
1790
1791
1792
1793
1794
1795
1796
1797
1798
1799
1800
1801
1802
1803
1804
1805
1806
1807
1808
1809
1810
1811
1812
1813
1814
1815
1816
1817
1818
1819
1820
1821
1822
1823
1824
1825
1826
1827
1828
1829
1830
1831
1832
1833
1834
1835
1836
1837
1838
1839
1840
1841
1842
1843
1844
1845
1846
1847
1848
1849
1850
1851
1852
1853
1854
1855
1856
1857
1858
1859
1860
1861
1862
1863
1864
1865
1866
1867
1868
1869
1870
1871
1872
1873
1874
1875
1876
1877
1878
1879
1880
1881
1882
1883
1884
1885
1886
1887
1888
1889
1890
1891
1892
1893
1894
1895
1896
1897
1898
1899
1900
1901
1902
1903
1904
1905
1906
1907
1908
1909
1910
1911
1912
1913
1914
1915
1916
1917
1918
1919
1920
1921
1922
1923
1924
1925
1926
1927
1928
1929
1930
1931
1932
1933
1934
1935
1936
1937
1938
1939
1940
1941
1942
1943
1944
1945
1946
1947
1948
1949
1950
1951
1952
1953
1954
1955
1956
1957
1958
1959
1960
1961
1962
1963
1964
1965
1966
1967
1968
1969
1970
1971
1972
1973
1974
1975
1976
1977
1978
1979
1980
1981
1982
1983
1984
1985
1986
1987
1988
1989
1990
1991
1992
1993
1994
1995
1996
1997
1998
1999
2000
2001
2002
2003
2004
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
2025
2026
2027
2028
2029
2030
2031
2032
2033
2034
2035
2036
2037
2038
2039
2040
2041
2042
2043
2044
2045
2046
2047
2048
2049
2050
2051
2052
2053
2054
2055
2056
2057
2058
2059
2060
2061
2062
2063
2064
2065
2066
2067
2068
2069
2070
2071
2072
2073
2074
2075
2076
2077
2078
2079
2080
2081
2082
2083
2084
2085
2086
2087
2088
2089
2090
2091
2092
2093
2094
2095
2096
2097
2098
2099
2100
2101
2102
2103
2104
2105
2106
2107
2108
2109
2110
2111
2112
2113
2114
2115
2116
2117
2118
2119
2120
2121
2122
2123
2124
2125
2126
2127
2128
2129
2130
2131
2132
2133
2134
2135
2136
2137
2138
2139
2140
2141
2142
2143
2144
2145
2146
2147
2148
2149
2150
2151
2152
2153
2154
2155
2156
2157
2158
2159
2160
2161
2162
2163
2164
2165
2166
2167
2168
2169
2170
2171
2172
2173
2174
2175
2176
2177
2178
2179
2180
2181
2182
2183
2184
2185
2186
2187
2188
2189
2190
2191
2192
2193
2194
2195
2196
2197
2198
2199
2200
2201
2202
2203
2204
2205
2206
2207
2208
2209
2210
2211
2212
2213
2214
2215
2216
2217
2218
2219
2220
2221
2222
2223
2224
2225
2226
2227
2228
2229
2230
2231
2232
2233
2234
2235
2236
2237
2238
2239
2240
2241
2242
2243
2244
2245
2246
2247
2248
2249
2250
2251
2252
2253
2254
2255
2256
2257
2258
2259
2260
2261
2262
2263
2264
2265
2266
2267
2268
2269
2270
2271
2272
2273
2274
2275
2276
2277
2278
2279
2280
2281
2282
2283
2284
2285
2286
2287
2288
2289
2290
2291
2292
2293
2294
2295
2296
2297
2298
2299
2300
2301
2302
2303
2304
2305
2306
2307
2308
2309
2310
2311
2312
2313
2314
2315
2316
2317
2318
2319
2320
2321
2322
2323
2324
2325
2326
2327
2328
2329
2330
2331
2332
2333
2334
2335
2336
2337
2338
2339
2340
2341
2342
2343
2344
2345
2346
2347
2348
2349
2350
2351
2352
2353
2354
2355
2356
2357
2358
2359
2360
2361
2362
2363
2364
2365
2366
2367
2368
2369
2370
2371
2372
2373
2374
2375
2376
2377
2378
2379
2380
2381
2382
2383
2384
2385
2386
2387
2388
2389
2390
2391
2392
2393
2394
2395
2396
2397
2398
2399
2400
2401
2402
2403
2404
2405
2406
2407
2408
2409
2410
2411
2412
2413
2414
2415
2416
2417
2418
2419
2420
2421
2422
2423
2424
2425
2426
2427
2428
2429
2430
2431
2432
2433
2434
2435
2436
2437
2438
2439
2440
2441
2442
2443
2444
2445
2446
2447
2448
2449
2450
2451
2452
2453
2454
2455
2456
2457
2458
2459
2460
2461
2462
2463
2464
2465
2466
2467
2468
2469
2470
2471
2472
2473
2474
2475
2476
2477
2478
2479
2480
2481
2482
2483
2484
2485
2486
2487
2488
2489
2490
2491
2492
2493
2494
2495
2496
2497
2498
2499
2500
2501
2502
2503
2504
2505
2506
2507
2508
2509
2510
2511
2512
2513
2514
2515
2516
2517
2518
2519
2520
2521
2522
2523
2524
2525
2526
2527
2528
2529
2530
2531
2532
2533
2534
2535
2536
2537
2538
2539
2540
2541
2542
2543
2544
2545
2546
2547
2548
2549
2550
2551
2552
2553
2554
2555
2556
2557
2558
2559
2560
2561
2562
2563
2564
2565
2566
2567
2568
2569
2570
2571
2572
2573
2574
2575
2576
2577
2578
2579
2580
2581
2582
2583
2584
2585
2586
2587
2588
2589
2590
2591
2592
2593
2594
2595
2596
2597
2598
2599
2600
2601
2602
2603
2604
2605
2606
2607
2608
2609
2610
2611
2612
2613
2614
2615
2616
2617
2618
2619
2620
2621
2622
2623
2624
2625
2626
2627
2628
2629
2630
2631
2632
2633
2634
2635
2636
2637
2638
2639
2640
2641
2642
2643
2644
2645
2646
2647
2648
2649
2650
2651
2652
2653
2654
2655
2656
2657
2658
2659
2660
2661
2662
2663
2664
2665
2666
2667
2668
2669
2670
2671
2672
2673
2674
2675
2676
2677
2678
2679
2680
2681
2682
2683
2684
2685
2686
2687
2688
2689
2690
2691
2692
2693
2694
2695
2696
2697
2698
2699
2700
2701
2702
2703
2704
2705
2706
2707
2708
2709
2710
2711
2712
2713
2714
2715
2716
2717
2718
2719
2720
2721
2722
2723
2724
2725
2726
2727
2728
2729
2730
2731
2732
2733
2734
2735
2736
2737
2738
2739
2740
2741
2742
2743
2744
2745
2746
2747
2748
2749
2750
2751
2752
2753
2754
2755
2756
2757
2758
2759
2760
2761
2762
2763
2764
2765
2766
2767
2768
2769
2770
2771
2772
2773
2774
2775
2776
2777
2778
2779
2780
2781
2782
2783
2784
2785
2786
2787
2788
2789
2790
2791
2792
2793
2794
2795
2796
2797
2798
2799
2800
2801
2802
2803
2804
2805
2806
2807
2808
2809
2810
2811
2812
2813
2814
2815
2816
2817
2818
2819
2820
2821
2822
2823
2824
2825
2826
2827
2828
2829
2830
2831
2832
2833
2834
2835
2836
2837
2838
2839
2840
2841
2842
2843
2844
2845
2846
2847
2848
2849
2850
2851
2852
2853
2854
2855
2856
2857
2858
2859
2860
2861
2862
2863
2864
2865
2866
2867
2868
2869
2870
2871
2872
2873
2874
2875
2876
2877
2878
2879
2880
2881
2882
2883
2884
2885
2886
2887
2888
2889
2890
2891
2892
2893
2894
2895
2896
2897
2898
2899
2900
2901
2902
2903
2904
2905
2906
2907
2908
2909
2910
2911
2912
2913
2914
2915
2916
2917
2918
2919
2920
|
<sect1 id="release-15">
<title>Release 15</title>
<formalpara>
<title>Release date:</title>
<para>AS OF 2022-05-09</para>
</formalpara>
<sect2>
<title>Overview</title>
<para>
<productname>PostgreSQL</productname> 15 contains many new features and
enhancements, including:
</para>
<itemizedlist>
<listitem><para></para></listitem>
</itemizedlist>
<para>
The above items and other new features
of <productname>PostgreSQL</productname> 15 are explained in more
detail in the sections below.
</para>
</sect2>
<sect2>
<title>Migration to Version 15</title>
<para>
A dump/restore using <xref linkend="app-pg-dumpall"/> or use of <xref
linkend="pgupgrade"/> or logical replication is required for those
wishing to migrate data from any previous release. See <xref
linkend="upgrading"/> for general information on migrating to new major
releases.
</para>
<para>
Version 15 contains a number of changes that may affect compatibility
with previous releases. Observe the following incompatibilities:
</para>
<itemizedlist>
<!--
Author: Noah Misch <noah@leadboat.com>
2021-09-09 [b073c3ccd] Revoke PUBLIC CREATE from public schema, now owned by pg
-->
<listitem>
<para>
Remove PUBLIC 'creation' permission on the 'public' schema (Noah Misch)
</para>
<para>
This is a change in the default for newly-created databases in existing clusters and for new clusters; usage permissions on the 'public' schema has not been changed. Databases restored from previous
Postgres releases will be restored with their current permissions. Users wishing to have the old permissions on new objects will need to grant 'create' permission for PUBLIC on the 'public' schema; this
change can be made on 'template1' to cause all new databases to have these permissions. template1 permissions for pg_dumpall and pg_upgrade?
</para>
</listitem>
<!--
Author: Noah Misch <noah@leadboat.com>
2021-09-09 [b073c3ccd] Revoke PUBLIC CREATE from public schema, now owned by pg
-->
<listitem>
<para>
Change the owner of the 'public' schema to 'pg_database_owner' (Noah Misch)
</para>
<para>
Previously it was the literal user name of the database owner. Databases restored from previous Postgres releases will be restored with their current owner specification.
</para>
</listitem>
<!--
Author: Stephen Frost <sfrost@snowman.net>
2022-04-06 [39969e2a1] Remove exclusive backup mode
-->
<listitem>
<para>
Remove long-deprecated exclusive backup mode (David Steele, Nathan Bossart)
</para>
<para>
If the database server stops abruptly while in this mode, the server could fail to start. The non-exclusive backup mode requires a continuous database connection during the
backup. Functions pg_start_backup()/pg_stop_backup() have been renamed to pg_backup_start()/pg_backup_stop(), and the functions pg_backup_start_time() and pg_is_in_backup() have been removed.
</para>
</listitem>
<!--
Author: Peter Geoghegan <pg@bowt.ie>
2022-02-16 [8f388f6f5] Increase hash_mem_multiplier default to 2.0.
-->
<listitem>
<para>
Increase hash_mem_multiplier default to 2.0 (Peter Geoghegan)
</para>
<para>
This allows query hash operations to use double the amount of work_mem memory as other operations.
</para>
</listitem>
<!--
Author: Andres Freund <andres@anarazel.de>
2022-03-07 [76a29adee] plpython: Remove plpythonu, plpython2u and associated tr
-->
<listitem>
<para>
Remove server-side language plpython2u and generic Python language plpythonu (Andres Freund)
</para>
</listitem>
<!--
Author: Tom Lane <tgl@sss.pgh.pa.us>
2022-01-19 [a3d6264bb] interval_out() must be marked STABLE, not IMMUTABLE.
-->
<listitem>
<para>
Mark the interval output function as stable, not immutable, since it depends on IntervalStyle (Tom Lane)
</para>
<para>
This will cause the creation of indexes relying on the text output of interval values to fail.
</para>
</listitem>
<!--
Author: Tom Lane <tgl@sss.pgh.pa.us>
2021-11-06 [cbe25dcff] Disallow making an empty lexeme via array_to_tsvector().
-->
<listitem>
<para>
Generate an error if array_to_tsvector() is passed an empty array element (Jean-Christophe Arnu)
</para>
<para>
This is prohibited because lexemes should never be empty. Users of previous Postgres releases should verify that no empty lexemes are stored because they can lead to dump/restore failures and inconsistent
results.
</para>
</listitem>
<!--
Author: Peter Eisentraut <peter@eisentraut.org>
2021-12-06 [e9e63b702] Fix inappropriate uses of PG_GETARG_UINT32()
-->
<listitem>
<para>
Generate an error when char() is supplied with a negative argument (Peter Eisentraut)
</para>
</listitem>
<!--
Author: Peter Eisentraut <peter@eisentraut.org>
2022-01-12 [a18b6d2dc] ecpg: Catch zero-length Unicode identifiers correctly
-->
<listitem>
<para>
Prevent Unicode zero-length identifiers, e.g., U&"" (Peter Eisentraut)
</para>
<para>
Non-Unicode zero-length identifiers were already prevented.
</para>
</listitem>
<!--
Author: Tom Lane <tgl@sss.pgh.pa.us>
2021-12-15 [2a712066d] Remove pg_dump's - -no-synchronized-snapshots switch.
-->
<listitem>
<para>
Remove pg_dump's --no-synchronized-snapshots option since all supported server versions support synchronized snapshots (Tom Lane)
</para>
</listitem>
<!--
Author: Tom Lane <tgl@sss.pgh.pa.us>
2022-02-15 [2523928b2] Reject change of output-column collation in CREATE OR RE
-->
<listitem>
<para>
Prevent CREATE OR REPLACE VIEW from changing the collation of an output column (Tom Lane)
</para>
</listitem>
<!--
Author: Peter Eisentraut <peter@eisentraut.org>
2022-02-16 [2549f0661] Reject trailing junk after numeric literals
-->
<listitem>
<para>
Prevent numeric literals from having non-numeric trailing characters (Peter Eisentraut)
</para>
<para>
Previously literals like '123abc' would be interpreted as '123' and 'abc'.
</para>
</listitem>
<!--
Author: Peter Eisentraut <peter@eisentraut.org>
2022-03-28 [e26114c81] Make JSON path numeric literals more correct
-->
<listitem>
<para>
Adjust JSON numeric literal processing to match the SQL/JSON-standard (Peter Eisentraut)
</para>
<para>
This accepts numeric formats like ".1" and "1.", and disallows trailing junk after numeric literals, like "1.type()".
</para>
</listitem>
<!--
Author: Tom Lane <tgl@sss.pgh.pa.us>
2022-04-03 [591e088dd] Fix portability issues in datetime parsing.
-->
<listitem>
<para>
Improve consistency of interval parsing with trailing periods (Tom Lane)
</para>
<para>
Some platforms disallowed trailing periods.
</para>
</listitem>
<!--
Author: Bruce Momjian <bruce@momjian.us>
2021-08-03 [95ab1e0a9] interval: round values when spilling to months
-->
<listitem>
<para>
When specifying fractional interval values in units greater than months, round to the nearest month (Bruce Momjian)
</para>
<para>
For example, report '1.99 years' as '2 years', not '1 year 11 months'.
</para>
</listitem>
<!--
Author: Tom Lane <tgl@sss.pgh.pa.us>
2022-02-28 [54bd1e43c] Handle integer overflow in interval justification functi
-->
<listitem>
<para>
Detect integer overflow in interval justification functions (Joe Koshakow)
</para>
<para>
Specifically, functions justify_interval(), justify_hours(), and justify_days() are affected.
</para>
</listitem>
<!--
Author: Robert Haas <rhaas@postgresql.org>
2022-03-28 [79de9842a] Remove the ability of a role to administer itself.
-->
<listitem>
<para>
Remove the default ADMIN OPTION privilege a login role has on its own role membership (Robert Haas)
</para>
<para>
Previously, login roles could add/remove members of its own role, even without ADMIN OPTION privilege.
</para>
</listitem>
<!--
Author: Jeff Davis <jdavis@postgresql.org>
2022-01-07 [a2ab9c06e] Respect permissions within logical replication.
-->
<listitem>
<para>
Allow logical replication to run as the owner of the subscription (Mark Dilger)
</para>
<para>
Because row-level security policies are not checked, only superusers, roles with bypassrls, and table owners can replicate into tables with row-level security policies.
</para>
</listitem>
<!--
Author: Jeff Davis <jdavis@postgresql.org>
2022-01-08 [96a6f11c0] More cleanup of a2ab9c06ea.
-->
<listitem>
<para>
Prevent UPDATE and DELETE logical replication operations on tables where the subscription owner does not have SELECT permission on the table (Jeff Davis)
</para>
<para>
UPDATE and DELETE perform SELECT, so require the subscription owner to have table SELECT permission.
</para>
</listitem>
<!--
Author: Tom Lane <tgl@sss.pgh.pa.us>
2021-07-27 [48c5c9068] Use the "pg_temp" schema alias in EXPLAIN and related ou
-->
<listitem>
<para>
When EXPLAIN references the temporary object schema, refer to it as "pg_temp" (Amul Sul)
</para>
<para>
Previously the actual schema name was used.
</para>
</listitem>
<!--
Author: Tom Lane <tgl@sss.pgh.pa.us>
2022-02-28 [2e517818f] Fix SPI's handling of errors during transaction commit.
-->
<listitem>
<para>
Modify SPI's SPI_commit() and SPI_commit_and_chain() to automatically start a new transaction at completion (Peter Eisentraut, Tom Lane)
</para>
<para>
BACKPATCHED?
</para>
</listitem>
<!--
Author: Tom Lane <tgl@sss.pgh.pa.us>
2022-03-24 [ce95c5437] Fix pg_statio_all_tables view for multiple TOAST indexes
-->
<listitem>
<para>
Fix pg_statio_all_tables to sum values for the rare case of TOAST tables with multiple indexes (Andrei Zubkov)
</para>
<para>
Previously such cases would have one row for each index.
</para>
</listitem>
<!--
Author: Peter Eisentraut <peter@eisentraut.org>
2021-12-01 [75d22069e] Warning on SET of nonexisting setting with a prefix rese
Author: Tom Lane <tgl@sss.pgh.pa.us>
2021-12-27 [2ed8a8cc5] Rethink handling of settings with a prefix reserved by a
Author: Tom Lane <tgl@sss.pgh.pa.us>
2022-02-21 [88103567c] Disallow setting bogus GUCs within an extension's reserv
-->
<listitem>
<para>
Disallow setting of server variables matching the prefixes of installed extension (Florin Irion, Tom Lane)
</para>
<para>
This also deletes any matching server variables during extension load.
</para>
</listitem>
<!--
Author: Andres Freund <andres@anarazel.de>
2022-04-06 [6f0cf8787] pgstat: remove stats_temp_directory.
-->
<listitem>
<para>
Remove unnecessary server variable stats_temp_directory (Andres Freund, Kyotaro Horiguchi)
</para>
</listitem>
<!--
Author: Tom Lane <tgl@sss.pgh.pa.us>
2021-11-28 [3804539e4] Replace random(), pg_erand48(), etc with a better PRNG A
Author: Tom Lane <tgl@sss.pgh.pa.us>
2022-04-12 [d4f109e4a] Doc: update description of random() function.
-->
<listitem>
<para>
Improve the algorithm used to compute random() (Fabien Coelho)
</para>
<para>
This will cause random() to differ from what was emitted by prior versions for the same seed values.
</para>
</listitem>
<!--
Author: Tom Lane <tgl@sss.pgh.pa.us>
2021-11-12 [f8abb0f5e] postgres_fdw: suppress casts on constants in limited cas
-->
<listitem>
<para>
Reduce casting of constants in postgres_fdw queries (Dian Fay)
</para>
<para>
If column types were mismatched between local and remote databases, such casting could cause errors.
</para>
</listitem>
<!--
Author: Tom Lane <tgl@sss.pgh.pa.us>
2022-02-14 [fd2abeb7c] Delete contrib/xml2's legacy implementation of xml_is_we
-->
<listitem>
<para>
Remove contrib/xml2's function xml_is_well_formed() (Tom Lane)
</para>
<para>
This function has been implemented in the core backend since Postgres 9.1.
</para>
</listitem>
<!--
Author: Tom Lane <tgl@sss.pgh.pa.us>
2021-07-06 [955b3e0f9] Allow CustomScan providers to say whether they support p
-->
<listitem>
<para>
Allow CustomScan providers to indicate if they support projections (Sven Klemm)
</para>
<para>
The default is now that custom scan providers can't support projections, so they need to be updated for this release.
</para>
</listitem>
</itemizedlist>
</sect2>
<sect2>
<title>Changes</title>
<para>
Below you will find a detailed account of the changes between
<productname>PostgreSQL</productname> 15 and the previous major
release.
</para>
<sect3>
<title>Server</title>
<itemizedlist>
<!--
Author: Peter Eisentraut <peter@eisentraut.org>
2022-02-14 [37851a8b8] Database-level collation version tracking
-->
<listitem>
<para>
Record and check the collation of each database (Peter Eisentraut)
</para>
<para>
This is designed to detect collation mismatches to avoid data corruption. Function pg_database_collation_actual_version() reports the underlying operating system collation version, and ALTER DATABASE ...
REFRESH sets the database to match the operating system collation version. DETAILS?
</para>
</listitem>
<!--
Author: Peter Eisentraut <peter@eisentraut.org>
2022-03-17 [f2553d430] Add option to use ICU as global locale provider
-->
<listitem>
<para>
Allow ICU collations to be set as the default for clusters and databases (Peter Eisentraut)
</para>
<para>
Previously, ICU collations could only be specified in CREATE COLLATION and used with the COLLATE clause.
</para>
</listitem>
<!--
Author: Michael Paquier <michael@paquier.xyz>
2022-03-29 [a2c84990b] Add system view pg_ident_file_mappings
-->
<listitem>
<para>
Add system view pg_ident_file_mappings to report pg_ident.conf information (Julien Rouhaud)
</para>
</listitem>
</itemizedlist>
<sect4>
<title><link linkend="ddl-partitioning">Partitioning</link></title>
<itemizedlist>
<!--
Author: David Rowley <drowley@postgresql.org>
2021-08-03 [475dbd0b7] Track a Bitmapset of non-pruned partitions in RelOptInfo
-->
<listitem>
<para>
Improve planning time for queries referencing partitioned tables (David Rowley)
</para>
<para>
Specifically this helps if only a small number of the many partitions are relevant.
</para>
</listitem>
<!--
Author: David Rowley <drowley@postgresql.org>
2021-08-03 [db632fbca] Allow ordered partition scans in more cases
-->
<listitem>
<para>
Allow ordered scans of partitions to avoid sorting in more cases (David Rowley)
</para>
<para>
Previously, a partitioned table with a DEFAULT partition or a LIST partition containing multiple values could not be used for ordered partition scans. Now they can be used if these partitions are pruned.
</para>
</listitem>
<!--
Author: Alvaro Herrera <alvherre@alvh.no-ip.org>
2022-03-20 [ba9a7e392] Enforce foreign key correctly during cross-partition upd
-->
<listitem>
<para>
Improve foreign key behavior of updates on partitioned tables that move rows between partitions (Amit Langote)
</para>
<para>
Previously, such updates ran delete actions on the source partition and insert actions on the target partition. PostgreSQL will now run update actions on the referenced partition root.
</para>
</listitem>
<!--
Author: Alvaro Herrera <alvherre@alvh.no-ip.org>
2022-04-02 [cfdd03f45] Allow CLUSTER on partitioned tables
Author: Alvaro Herrera <alvherre@alvh.no-ip.org>
2022-04-14 [3f19e176a] Have CLUSTER ignore partitions not owned by caller
-->
<listitem>
<para>
Allow CLUSTER on partitioned tables (Justin Pryzby)
</para>
</listitem>
<!--
Author: Alvaro Herrera <alvherre@alvh.no-ip.org>
2021-07-22 [80ba4bb38] Make ALTER TRIGGER RENAME consistent for partitioned tab
-->
<listitem>
<para>
Fix ALTER TRIGGER RENAME on partitioned tables to properly rename triggers an all partitions (Arne Roland, Álvaro Herrera)
</para>
<para>
Also prohibit cloned triggers from being renamed.
</para>
</listitem>
</itemizedlist>
</sect4>
<sect4>
<title>Indexes</title>
<itemizedlist>
<!--
Author: Peter Geoghegan <pg@bowt.ie>
2021-10-02 [2903f1404] Enable deduplication in system catalog indexes.
-->
<listitem>
<para>
Enable system and TOAST B-tree indexes to efficiently store duplicates (Peter Geoghegan)
</para>
<para>
Previously de-duplication was disabled for these types of indexes.
</para>
</listitem>
<!--
Author: Alexander Korotkov <akorotkov@postgresql.org>
2022-02-07 [f1ea98a79] Reduce non-leaf keys overlap in GiST indexes produced by
-->
<listitem>
<para>
Improve lookup performance of GiST indexes built using sorting (Aliaksandr Kalenik, Sergei Shoulbakov, Andrey Borodin)
</para>
</listitem>
<!--
Author: Tomas Vondra <tomas.vondra@postgresql.org>
2021-11-30 [5753d4ee3] Ignore BRIN indexes when checking for HOT udpates
-->
<listitem>
<para>
Prevent changes to columns only indexed by BRIN indexes from disabling HOT updates (Josef Simanek)
</para>
</listitem>
<!--
Author: Peter Eisentraut <peter@eisentraut.org>
2022-02-03 [94aa7cc5f] Add UNIQUE null treatment option
-->
<listitem>
<para>
Allow unique constraints and indexes to treat NULL values as not distinct (Peter Eisentraut)
</para>
<para>
Previously NULL values were always indexed as distinct values, but this can now be changed by creating constraints and indexes using UNIQUE NULLS NOT DISTINCT.
</para>
</listitem>
<!--
Author: Tom Lane <tgl@sss.pgh.pa.us>
2021-11-17 [a148f8bc0] Add a planner support function for starts_with().
-->
<listitem>
<para>
Allow ^@ and starts_with() to use btree indexes if using a C collation (Tom Lane)
</para>
<para>
Previously these could only use SP-GiST indexes.
</para>
</listitem>
</itemizedlist>
</sect4>
<sect4>
<title>Optimizer</title>
<itemizedlist>
<!--
Author: Tomas Vondra <tomas.vondra@postgresql.org>
2022-01-16 [269b532ae] Add stxdinherit flag to pg_statistic_ext_data
-->
<listitem>
<para>
Allow extended statistics to record statistics for a parent with all its children (Tomas Vondra, Justin Pryzby)
</para>
<para>
Regular statistics already tracked parent and parent/all-children statistics separately.
</para>
</listitem>
<!--
Author: Tomas Vondra <tomas.vondra@postgresql.org>
2022-03-31 [db0d67db2] Optimize order of GROUP BY keys
-->
<listitem>
<para>
Allow GROUP BY sorting to optimize column order (Dmitry Dolgov, Teodor Sigaev, Tomas Vondra)
</para>
<para>
This optimization can be disabled using the server variable enable_group_by_reordering.
</para>
</listitem>
<!--
Author: Tom Lane <tgl@sss.pgh.pa.us>
2022-03-24 [0bd7af082] Invent recursive_worktable_factor GUC to replace hard-wi
-->
<listitem>
<para>
Add server variable recursive_worktable_factor to allow the user to specify the expected recursive query worktable size (Simon Riggs)
</para>
<para>
WHAT IS A WORKTABLE? NOT DEFINED.
</para>
</listitem>
</itemizedlist>
</sect4>
<sect4>
<title>General Performance</title>
<itemizedlist>
<!--
Author: David Rowley <drowley@postgresql.org>
2021-07-07 [29f45e299] Use a hash table to speed up NOT IN(values)
-->
<listitem>
<para>
Allow hash lookup for NOT IN clauses with many constants (David Rowley, James Coleman)
</para>
<para>
Previously the code always sequentially scanned the list of values.
</para>
</listitem>
<!--
Author: John Naylor <john.naylor@postgresql.org>
2021-12-20 [911588a3f] Add fast path for validating UTF-8 text
-->
<listitem>
<para>
Improve validation of UTF-8 text (even if only ASCII) by processing 16 bytes at a time (John Naylor, Heikki Linnakangas)
</para>
<para>
This will improve text-heavy operations like COPY FROM.
</para>
</listitem>
<!--
Author: Heikki Linnakangas <heikki.linnakangas@iki.fi>
2021-10-18 [65014000b] Replace polyphase merge algorithm with a simple balanced
Author: Heikki Linnakangas <heikki.linnakangas@iki.fi>
2021-10-25 [166f94377] Clarify the logic in a few places in the new balanced me
-->
<listitem>
<para>
Improve performance for sorts that exceed work_mem (Heikki Linnakangas)
</para>
<para>
Specifically, switch to a batch sorting algorithm that uses more output streams internally.
</para>
</listitem>
<!--
Author: David Rowley <drowley@postgresql.org>
2021-07-22 [91e9e89dc] Make nodeSort.c use Datum sorts for single column sorts
Author: David Rowley <drowley@postgresql.org>
2022-04-04 [40af10b57] Use Generation memory contexts to store tuples in sorts
Author: John Naylor <john.naylor@postgresql.org>
2022-04-02 [697492434] Specialize tuplesort routines for different kinds of abb
-->
<listitem>
<para>
Improve performance and reduce memory consumption of in-memory sorts (Ronan Dunklau, David Rowley, Thomas Munro, John Naylor)
</para>
</listitem>
<!--
Author: Michael Paquier <michael@paquier.xyz>
2021-06-29 [4035cd5d4] Add support for LZ4 with compression of full-page writes
Author: Michael Paquier <michael@paquier.xyz>
2022-03-11 [e9537321a] Add support for zstd with compression of full-page write
-->
<listitem>
<para>
Allow WAL full page writes to use LZ4 and Zstandard compression (Andrey Borodin, Justin Pryzby)
</para>
<para>
This is controlled by the wal_compression server setting.
</para>
</listitem>
<!--
Author: Thomas Munro <tmunro@postgresql.org>
2021-07-19 [2dbe89057] Support direct I/O on macOS.
-->
<listitem>
<para>
Add direct I/O support to macOS (Thomas Munro)
</para>
<para>
This only works if max_wal_senders=0 and wal_level=minimal, and only for WAL.
</para>
</listitem>
<!--
Author: Peter Geoghegan <pg@bowt.ie>
2022-04-03 [0b018faba] Set relfrozenxid to oldest extant XID seen by VACUUM.
-->
<listitem>
<para>
Allow vacuum to be more aggressive in setting the oldest frozenxid (Peter Geoghegan)
</para>
</listitem>
<!--
Author: Etsuro Fujita <efujita@postgresql.org>
2022-04-06 [c2bb02bc2] Allow asynchronous execution in more cases.
-->
<listitem>
<para>
Allow a query referencing multiple foreign tables to perform parallel foreign table scans in more cases (Andrey Lepikhov, Etsuro Fujita)
</para>
</listitem>
<!--
Author: David Rowley <drowley@postgresql.org>
2022-04-08 [9d9c02ccd] Teach planner and executor about monotonic window funcs
-->
<listitem>
<para>
Improve the performance of window functions that use row_number(), rank(), and count() (David Rowley)
</para>
</listitem>
<!--
Author: Tom Lane <tgl@sss.pgh.pa.us>
2022-04-06 [a82a5eee3] Use ISB as a spin-delay instruction on ARM64.
-->
<listitem>
<para>
Improve the performance of spinlocks on high-core-count ARM64 systems (Geoffrey Blake)
</para>
</listitem>
</itemizedlist>
</sect4>
<sect4>
<title>Monitoring</title>
<itemizedlist>
<!--
Author: Robert Haas <rhaas@postgresql.org>
2021-12-13 [64da07c41] Default to log_checkpoints=on, log_autovacuum_min_durati
-->
<listitem>
<para>
Enable default logging of checkpoints and slow autovacuum operations (Bharath Rupireddy)
</para>
<para>
Specifically, this changes the default of log_checkpoints to on and log_autovacuum_min_duration to 10 minutes. This will cause idle servers to generate log output, which might cause problems on
resource-constrained servers with insufficient log file removal. The defaults should be changed in such cases.
</para>
</listitem>
<!--
Author: Robert Haas <rhaas@postgresql.org>
2021-10-25 [9ce346eab] Report progress of startup operations that take a long t
Author: Alvaro Herrera <alvherre@alvh.no-ip.org>
2021-11-05 [e543906e2] Document default and changeability of log_startup_progre
-->
<listitem>
<para>
Generate periodic log message during slow server starts (Nitin Jadhav, Robert Haas)
</para>
<para>
Messages report the cause of the delay. The time interval for notification is controlled by the new server variable log_startup_progress_interval.
</para>
</listitem>
<!--
Author: Andres Freund <andres@anarazel.de>
2022-04-06 [5891c7a8e] pgstat: store statistics in shared memory.
Author: Andres Freund <andres@anarazel.de>
2022-04-07 [b3abca681] pgstat: Update docs to match the shared memory stats rea
-->
<listitem>
<para>
Store server-level statistics in shared memory (Kyotaro Horiguchi, Andres Freund, Melanie Plageman)
</para>
<para>
Previously this was updated via UDP packets, stored in the file system, and read by sessions. There is no longer a statistics collector process.
</para>
</listitem>
<!--
Author: Peter Geoghegan <pg@bowt.ie>
2022-02-11 [872770fd6] Add VACUUM instrumentation for scanned pages, relfrozenx
Author: Peter Geoghegan <pg@bowt.ie>
2022-03-13 [6e20f4600] VACUUM VERBOSE: tweak scanned_pages logic.
Author: Peter Geoghegan <pg@bowt.ie>
2022-04-15 [bdb71dbe8] VACUUM VERBOSE: Show dead items for an empty table.
-->
<listitem>
<para>
Add additional information to VACUUM VERBOSE and autovacuum logging messages (Peter Geoghegan)
</para>
</listitem>
<!--
Author: Michael Paquier <michael@paquier.xyz>
2022-04-08 [efb0ef909] Track I/O timing for temporary file blocks in EXPLAIN (B
-->
<listitem>
<para>
Add EXPLAIN (BUFFERS) output for temporary file block I/O (Masahiko Sawada)
</para>
</listitem>
<!--
Author: Michael Paquier <michael@paquier.xyz>
2022-01-17 [dc686681e] Introduce log_destination=jsonlog
-->
<listitem>
<para>
Allow log output in JSON format (Sehrope Sarkuni, Michael Paquier)
</para>
<para>
The new setting is log_destination=jsonlog.
</para>
</listitem>
<!--
Author: Fujii Masao <fujii@postgresql.org>
2021-09-02 [e04267844] Enhance pg_stat_reset_single_table_counters function.
-->
<listitem>
<para>
Allow pg_stat_reset_single_table_counters() to reset the counters of relations shared across all databases (B Sadhu, Prasad Patro)
</para>
</listitem>
<!--
Author: Fujii Masao <fujii@postgresql.org>
2021-11-22 [1b06d7bac] Report wait events for local shell commands like archive
-->
<listitem>
<para>
Add wait events for local shell commands (Fujii Masao)
</para>
<para>
Specifically the new wait events are related to commands archive_command, archive_cleanup_command, restore_command and recovery_end_command.
</para>
</listitem>
</itemizedlist>
</sect4>
<sect4>
<title>Privileges</title>
<itemizedlist>
<!--
Author: Dean Rasheed <dean.a.rasheed@gmail.com>
2022-03-22 [7faa5fc84] Add support for security invoker views.
-->
<listitem>
<para>
Allow view access to be controlled by privileges of the view user (Christoph Heiss)
</para>
<para>
Previously, view access could only be based on the view owner.
</para>
</listitem>
<!--
Author: Robert Haas <rhaas@postgresql.org>
2022-01-28 [7f6772317] Adjust server-side backup to depend on pg_write_server_f
-->
<listitem>
<para>
Allow members of the pg_write_server_files predefined role to perform server-side base backups (Dagfinn Ilmari Mannsåker)
</para>
<para>
Previously only the superusers could perform such backups.
</para>
</listitem>
<!--
Author: Tom Lane <tgl@sss.pgh.pa.us>
2022-04-06 [a0ffa885e] Allow granting SET and ALTER SYSTEM privileges on GUC pa
-->
<listitem>
<para>
Allow GRANT to assign permission to change server variables via SET and ALTER SYSTEM (Mark Dilger)
</para>
<para>
New function has_parameter_privilege() reports on this privilege.
</para>
</listitem>
<!--
Author: Jeff Davis <jdavis@postgresql.org>
2021-11-09 [4168a4745] Add pg_checkpointer predefined role for CHECKPOINT comma
-->
<listitem>
<para>
Add predefined role pg_checkpointer that allows members to run CHECKPOINT (Jeff Davis)
</para>
<para>
Previously checkpoints could only be run by superusers.
</para>
</listitem>
<!--
Author: Jeff Davis <jdavis@postgresql.org>
2021-10-27 [77ea4f943] Grant memory views to pg_read_all_stats.
-->
<listitem>
<para>
Allow members of the pg_read_all_stats predefined role to access the views pg_backend_memory_contexts and pg_shmem_allocations (Bharath Rupireddy)
</para>
<para>
Previously these views could only be accessed by superusers.
</para>
</listitem>
<!--
Author: Jeff Davis <jdavis@postgresql.org>
2021-10-26 [f0b051e32] Allow GRANT on pg_log_backend_memory_contexts().
-->
<listitem>
<para>
Allow GRANT to assign permissions on pg_log_backend_memory_contexts() (Jeff Davis)
</para>
<para>
Previously this function could only be run by superusers.
</para>
</listitem>
</itemizedlist>
</sect4>
<sect4>
<title>Server Configuration</title>
<itemizedlist>
<!--
Author: Michael Paquier <michael@paquier.xyz>
2021-09-08 [bd1788051] Introduce GUC shared_memory_size
Author: Michael Paquier <michael@paquier.xyz>
2021-09-09 [3b231596c] Make shared_memory_size a preset option
-->
<listitem>
<para>
Add server variable shared_memory_size to report the size of allocated shared memory (Nathan Bossart)
</para>
</listitem>
<!--
Author: Michael Paquier <michael@paquier.xyz>
2021-09-21 [43c1c4f65] Introduce GUC shared_memory_size_in_huge_pages
Author: Michael Paquier <michael@paquier.xyz>
2022-03-24 [bbd4951b7] doc: Improve postgres command for shared_memory_size_in_
-->
<listitem>
<para>
Add server variable shared_memory_size_in_huge_pages to report the number of huge memory pages required (Nathan Bossart)
</para>
<para>
This is only supported on Linux.
</para>
</listitem>
<!--
Author: Michael Paquier <michael@paquier.xyz>
2021-09-16 [0c39c2920] Support "postgres -C" with runtime-computed GUCs
-->
<listitem>
<para>
Allow "postgres -C" to properly report runtime-computed values (Nathan Bossart)
</para>
<para>
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.
</para>
</listitem>
</itemizedlist>
</sect4>
</sect3>
<sect3>
<title>Streaming Replication and Recovery</title>
<itemizedlist>
<!--
Author: Robert Haas <rhaas@postgresql.org>
2022-02-11 [dab298471] Add suport for server-side LZ4 base backup compression.
Author: Robert Haas <rhaas@postgresql.org>
2022-03-08 [7cf085f07] Add support for zstd base backup compression.
Author: Robert Haas <rhaas@postgresql.org>
2022-03-30 [51c0d186d] Allow parallel zstd compression when taking a base backu
-->
<listitem>
<para>
Add support for LZ4 and Zstandard compression of server-side base backups (Jeevan Ladhe, Robert Haas)
</para>
</listitem>
<!--
Author: Thomas Munro <tmunro@postgresql.org>
2021-08-02 [7ff23c6d2] Run checkpointer and bgwriter in crash recovery.
-->
<listitem>
<para>
Run checkpointer and bgwriter during crash recovery (Thomas Munro)
</para>
</listitem>
<!--
Author: Thomas Munro <tmunro@postgresql.org>
2022-04-07 [5dc0418fa] Prefetch data referenced by the WAL, take II.
-->
<listitem>
<para>
Allow WAL processing to pre-fetch needed file contents (Thomas Munro)
</para>
<para>
This is controlled by the server variable recovery_prefetch.
</para>
</listitem>
<!--
Author: Robert Haas <rhaas@postgresql.org>
2022-02-03 [5ef1eefd7] Allow archiving via loadable modules.
-->
<listitem>
<para>
Add server variable archive_library to specify the library to be called for archiving (Nathan Bossart)
</para>
<para>
Previously only shell commands could be called to perform archiving.
</para>
</listitem>
<!--
Author: Jeff Davis <jdavis@postgresql.org>
2021-07-09 [8e7811e95] Eliminate replication protocol error related to IDENTIFY
-->
<listitem>
<para>
No longer require IDENTIFY_SYSTEM to be run before START_REPLICATION (Jeff Davis)
</para>
</listitem>
</itemizedlist>
<sect4>
<title><link linkend="logical-replication">Logical Replication</link></title>
<itemizedlist>
<!--
Author: Amit Kapila <akapila@postgresql.org>
2021-10-27 [5a2832465] Allow publishing the tables of schema.
Author: Amit Kapila <akapila@postgresql.org>
2021-12-08 [1a2aaeb0d] Fix changing the ownership of ALL TABLES IN SCHEMA publi
-->
<listitem>
<para>
Allow publication of all tables in a schema (Vignesh C, Hou Zhijie, Amit Kapila)
</para>
<para>
For example, this syntax is now supported: CREATE PUBLICATION pub1 FOR ALL TABLES IN SCHEMA s1,s2; ALTER PUBLICATION supports a similar syntax. Tables added to the listed schemas in the future will also
be replicated.
</para>
</listitem>
<!--
Author: Amit Kapila <akapila@postgresql.org>
2022-02-22 [52e4f0cd4] Allow specifying row filters for logical replication of
Author: Tomas Vondra <tomas.vondra@postgresql.org>
2022-03-17 [5a0796622] Fix row filters with multiple publications
Author: Amit Kapila <akapila@postgresql.org>
2022-04-18 [676eeb6dd] Add additional documentation for row filters.
-->
<listitem>
<para>
Allow publication content to be filtered using a WHERE clause (Hou Zhijie, Euler Taveira, Peter Smith, Ajin Cherian, Tomas Vondra, Amit Kapila)
</para>
</listitem>
<!--
Author: Tomas Vondra <tomas.vondra@postgresql.org>
2022-03-26 [923def9a5] Allow specifying column lists for logical replication
-->
<listitem>
<para>
Allow publications to be restricted to specific columns (Tomas Vondra, Álvaro Herrera, Rahila Syed)
</para>
</listitem>
<!--
Author: Amit Kapila <akapila@postgresql.org>
2022-03-22 [208c5d65b] Add ALTER SUBSCRIPTION ... SKIP.
-->
<listitem>
<para>
Allow skipping of transactions on a subscriber using ALTER SUBSCRIPTION ... SKIP (Masahiko Sawada)
</para>
</listitem>
<!--
Author: Amit Kapila <akapila@postgresql.org>
2021-07-14 [a8fd13cab] Add support for prepared transactions to built-in logica
Author: Amit Kapila <akapila@postgresql.org>
2021-08-04 [63cf61cde] Add prepare API support for streaming transactions in lo
-->
<listitem>
<para>
Add support for prepared transactions to built-in logical replication (Peter Smith, Ajin Cherian, Amit Kapila, Nikhil Sontakke, Stas Kelvich)
</para>
</listitem>
<!--
Author: Amit Kapila <akapila@postgresql.org>
2021-06-30 [cda03cfed] Allow enabling two-phase option via replication protocol
-->
<listitem>
<para>
Add two-phase information to the logical replication stream (Ajin Cherian)
</para>
<para>
The new CREATE_REPLICATION_SLOT option is called TWO_PHASE. pg_recvlogical now supports a new --two-phase option during slot creation.
</para>
</listitem>
<!--
Author: Amit Kapila <akapila@postgresql.org>
2022-03-30 [d5a9d86d8] Skip empty transactions for logical replication.
-->
<listitem>
<para>
Prevent logical replication of empty transactions (Ajin Cherian, Hou Zhijie, Euler Taveira)
</para>
<para>
Previously, write transactions would send empty transactions to subscribers if subscribed tables were not modified.
</para>
</listitem>
<!--
Author: Michael Paquier <michael@paquier.xyz>
2021-11-23 [1922d7c6e] Add SQL functions to monitor the directory contents of r
-->
<listitem>
<para>
Add SQL functions to monitor the directory contents of logical replication slots (Bharath Rupireddy)
</para>
<para>
Specifically, the functions are pg_ls_logicalsnapdir(), pg_ls_logicalmapdir(), and pg_ls_replslotdir(). They can be run by members of the predefined pg_monitor role.
</para>
</listitem>
<!--
Author: Amit Kapila <akapila@postgresql.org>
2022-03-14 [705e20f85] Optionally disable subscriptions on error.
-->
<listitem>
<para>
Allow subscribers to stop logical replication application on error (Osumi Takamichi, Mark Dilger)
</para>
<para>
This is enabled with the subscriber option "disable_on_error" and avoids possible infinite error loops during stream application.
</para>
</listitem>
<!--
Author: Tom Lane <tgl@sss.pgh.pa.us>
2021-11-02 [f3d4019da] Ensure consistent logical replication of datetime and fl
-->
<listitem>
<para>
Adjust subscriber server variables to match the publisher so datetime and float8 values are interpreted consistently (Japin Li)
</para>
<para>
Some publishers might be relying on inconsistent behavior.
</para>
</listitem>
<!--
Author: Amit Kapila <akapila@postgresql.org>
2021-11-30 [8d74fc96d] Add a view to show the stats of subscription workers.
Author: Amit Kapila <akapila@postgresql.org>
2022-03-01 [7a8507329] Reconsider pg_stat_subscription_workers view.
-->
<listitem>
<para>
Add system view pg_stat_subscription_stats to report on subscriber activity (Masahiko Sawada)
</para>
<para>
New function pg_stat_reset_subscription_stats() allows the resetting of subscriber statistics.
</para>
</listitem>
<!--
Author: Amit Kapila <akapila@postgresql.org>
2021-12-08 [a61bff2bf] De-duplicate the result of pg_publication_tables view.
-->
<listitem>
<para>
Remove incorrect duplicate partitions in system view pg_publication_tables (Hou Zhijie)
</para>
</listitem>
</itemizedlist>
</sect4>
</sect3>
<sect3>
<title><link linkend="sql-select"><command>SELECT</command></link>, <link linkend="sql-insert"><command>INSERT</command></link></title>
<itemizedlist>
<!--
Author: David Rowley <drowley@postgresql.org>
2021-08-22 [22c4e88eb] Allow parallel DISTINCT
-->
<listitem>
<para>
Allow SELECT DISTINCT to be parallelized (David Rowley)
</para>
</listitem>
</itemizedlist>
</sect3>
<sect3>
<title>Utility Commands</title>
<itemizedlist>
<!--
Author: Alvaro Herrera <alvherre@alvh.no-ip.org>
2022-03-28 [7103ebb7a] Add support for MERGE SQL command
-->
<listitem>
<para>
Add SQL MERGE command to adjust one table to match another (Simon Riggs, Pavan Deolasee, Álvaro Herrera, Amit Langote)
</para>
<para>
This is similar to INSERT ... ON CONFLICT but more batch-oriented.
</para>
</listitem>
<!--
Author: Peter Eisentraut <peter@eisentraut.org>
2022-01-28 [43f33dc01] Add HEADER support to COPY text format
Author: Peter Eisentraut <peter@eisentraut.org>
2022-03-30 [072132f04] Add header matching mode to COPY FROM
-->
<listitem>
<para>
Add support for HEADER option in COPY text format (Rémi Lapeyre)
</para>
<para>
The new option causes the column names to be output, and optionally verified on input.
</para>
</listitem>
<!--
Author: Robert Haas <rhaas@postgresql.org>
2022-03-29 [9c08aea6a] Add new block-by-block strategy for CREATE DATABASE.
-->
<listitem>
<para>
Add new default WAL-logged method for database creation (Dilip Kumar)
</para>
<para>
This avoids the need for checkpoints during database creation; the old method is still available.
</para>
</listitem>
<!--
Author: Robert Haas <rhaas@postgresql.org>
2022-01-24 [aa0105141] pg_upgrade: Preserve database OIDs.
-->
<listitem>
<para>
Allow CREATE DATABASE to set the database OID (Shruthi KC, Antonin Houska)
</para>
</listitem>
<!--
Author: Thomas Munro <tmunro@postgresql.org>
2022-02-12 [4eb217631] Fix DROP {DATABASE,TABLESPACE} on Windows.
-->
<listitem>
<para>
Prevent DROP DATABASE, DROP TABLESPACE, and ALTER DATABASE SET TABLESPACE from occasionally failing during concurrent use on Windows (Thomas Munro)
</para>
</listitem>
<!--
Author: Peter Eisentraut <peter@eisentraut.org>
2021-12-08 [d6f96ed94] Allow specifying column list for foreign key ON DELETE S
-->
<listitem>
<para>
Allow foreign key ON DELETE SET actions to affect only specified columns (Paul Martinez)
</para>
<para>
Previously, all of the columns in the foreign key were always affected.
</para>
</listitem>
<!--
Author: Michael Paquier <michael@paquier.xyz>
2021-07-28 [b0483263d] Add support for SET ACCESS METHOD in ALTER TABLE
-->
<listitem>
<para>
Allow ALTER TABLE to modify a table's ACCESS METHOD (Justin Pryzby, Jeff Davis)
</para>
</listitem>
<!--
Author: Michael Paquier <michael@paquier.xyz>
2021-08-10 [7b565843a] Add call to object access hook at the end of table rewri
-->
<listitem>
<para>
Properly call object access hooks when ALTER TABLE causes table rewrites (Michael Paquier)
</para>
</listitem>
</itemizedlist>
</sect3>
<sect3>
<title>Data Types</title>
<itemizedlist>
<!--
Author: Dean Rasheed <dean.a.rasheed@gmail.com>
2021-07-26 [085f931f5] Allow numeric scale to be negative or greater than preci
-->
<listitem>
<para>
Allow numeric scale to be negative or greater than precision (Dean Rasheed, Tom Lane)
</para>
<para>
This allows rounding of values to the left of the decimal point, e.g., '1234'::numeric(4, -2) returns 1200.
</para>
</listitem>
<!--
Author: Tom Lane <tgl@sss.pgh.pa.us>
2022-04-02 [e39f99046] Fix overflow hazards in interval input and output conver
-->
<listitem>
<para>
Improve overflow detection when casting values to interval (Joe Koshakow)
</para>
</listitem>
<!--
Author: Peter Eisentraut <peter@eisentraut.org>
2022-04-07 [344d62fb9] Unlogged sequences
-->
<listitem>
<para>
Allow the creation of unlogged sequences (Peter Eisentraut)
</para>
</listitem>
<!--
Author: John Naylor <john.naylor@postgresql.org>
2021-08-26 [bab982161] Update display widths as part of updating Unicode
Author: Peter Eisentraut <peter@eisentraut.org>
2021-09-15 [f7e56f1f5] Update Unicode data to Unicode 14.0.0
-->
<listitem>
<para>
Update the display width information for modern Unicode characters, like emojis (Jacob Champion)
</para>
<para>
Also update from Unicode 5.0 to 14.0.0. There is now an automated way to keep Postgres updated with Unicode releases.
</para>
</listitem>
</itemizedlist>
</sect3>
<sect3>
<title>Functions</title>
<itemizedlist>
<!--
Author: Peter Eisentraut <peter@eisentraut.org>
2022-03-30 [7ae1619bc] Add range_agg with multirange inputs
-->
<listitem>
<para>
Add multirange input to range_agg() (Paul Jungwirth)
</para>
</listitem>
<!--
Author: Fujii Masao <fujii@postgresql.org>
2022-02-10 [400fc6b64] Add min() and max() aggregates for xid8.
-->
<listitem>
<para>
Add min() and max() aggregates for the xid8 data type (Ken Kato)
</para>
</listitem>
<!--
Author: Tom Lane <tgl@sss.pgh.pa.us>
2021-08-03 [642433707] Add assorted new regexp_xxx SQL functions.
-->
<listitem>
<para>
Add regular expression functions for compatibility with other relational systems (Gilles Darold, Tom Lane)
</para>
<para>
Specifically, the new functions are regexp_count(), regexp_instr(), regexp_like(), and regexp_substr(). Some new optional arguments were also added to regexp_replace().
</para>
</listitem>
<!--
Author: Tom Lane <tgl@sss.pgh.pa.us>
2021-11-06 [cbe25dcff] Disallow making an empty lexeme via array_to_tsvector().
-->
<!--
Author: Tom Lane <tgl@sss.pgh.pa.us>
2021-12-13 [c5c192d7b] Implement poly_distance().
-->
<listitem>
<para>
Add the ability to compute the distance between polygons (Tom Lane)
</para>
</listitem>
<!--
Author: Robert Haas <rhaas@postgresql.org>
2022-03-14 [9dde82899] Support "of", "tzh", and "tzm" format codes.
-->
<listitem>
<para>
Add to_char() format codes "of", "tzh", and "tzm" format codes (Nitin Jadhav)
</para>
<para>
The upper-case versions of these were already supported.
</para>
</listitem>
<!--
Author: Tom Lane <tgl@sss.pgh.pa.us>
2021-09-06 [388e71af8] Make timetz_zone() stable, and correct a bug for DYNTZ a
-->
<listitem>
<para>
Improve the optimization of timetz_zone() by stabilizing its value at transaction start (Aleksander Alekseev, Tom Lane)
</para>
</listitem>
<!--
Author: Tom Lane <tgl@sss.pgh.pa.us>
2021-11-06 [cbe25dcff] Disallow making an empty lexeme via array_to_tsvector().
-->
<listitem>
<para>
Allow tsvector_delete_arr() and tsvector_setweight_by_filter() to accept empty array elements (Jean-Christophe Arnu)
</para>
<para>
These lexemes are not stored so the acceptance of empty array elements is not a problem.
</para>
</listitem>
<!--
Author: David Rowley <drowley@postgresql.org>
2021-07-09 [ca2e4472b] Teach pg_size_pretty and pg_size_bytes about petabytes
-->
<listitem>
<para>
Add support for petabyte units to pg_size_pretty() and pg_size_bytes() (David Christensen)
</para>
</listitem>
<!--
Author: Tom Lane <tgl@sss.pgh.pa.us>
2021-07-27 [024515cac] In event triggers, use "pg_temp" only for our own temp s
-->
<listitem>
<para>
Change pg_event_trigger_ddl_commands() to output references to non-local temporary schemas using the actual schema name (Tom Lane)
</para>
<para>
Previously this function referred to temporary schemas as "pg_temp".
</para>
</listitem>
</itemizedlist>
<sect4>
<title>JSON</title>
<itemizedlist>
<!--
Author: Andrew Dunstan <andrew@dunslane.net>
2022-03-27 [f79b803dc] Common SQL/JSON clauses
Author: Andrew Dunstan <andrew@dunslane.net>
2022-03-27 [f4fb45d15] SQL/JSON constructors
Author: Andrew Dunstan <andrew@dunslane.net>
2022-03-30 [606948b05] SQL JSON functions
Author: Andrew Dunstan <andrew@dunslane.net>
2022-03-31 [49082c2cc] RETURNING clause for JSON() and JSON_SCALAR()
Author: Andrew Dunstan <andrew@dunslane.net>
2022-04-07 [a6baa4bad] Documentation for SQL/JSON features
-->
<listitem>
<para>
Add SQL/JSON-standard JSON constructors (Nikita Glukhov)
</para>
<para>
The construction functions are JSON(), JSON_SCALAR(), and JSON_SERIALIZE(), JSON_ARRAY(), JSON_ARRAYAGG(), JSON_OBJECT(), and JSON_OBJECTAGG(). They have a few functional advantages over the existing JSON functions.
</para>
</listitem>
<!--
Author: Andrew Dunstan <andrew@dunslane.net>
2022-03-29 [1a36bc9db] SQL/JSON query functions
-->
<listitem>
<para>
Add SQL/JSON query functions JSON_EXISTS(), JSON_QUERY(), and JSON_VALUE() (Nikita Glukhov)
</para>
</listitem>
<!--
Author: Andrew Dunstan <andrew@dunslane.net>
2022-03-28 [33a377608] IS JSON predicate
-->
<listitem>
<para>
Add JSON predicates to test JSON/JSONB values (Nikita Glukhov)
</para>
<para>
The clauses are IS JSON [ VALUE | ARRAY | OBJECT | SCALAR | [WITH | WITHOUT ] UNIQUE KEYS ].
</para>
</listitem>
<!--
Author: Andrew Dunstan <andrew@dunslane.net>
2022-04-04 [4e34747c8] JSON_TABLE
Author: Andrew Dunstan <andrew@dunslane.net>
2022-04-05 [fadb48b00] PLAN clauses for JSON_TABLE
-->
<listitem>
<para>
Add JSON_TABLE function to cause JSON data to be treated as a table (Nikita Glukhov)
</para>
</listitem>
</itemizedlist>
</sect4>
</sect3>
<sect3>
<title><link linkend="plpgsql">PL/pgSQL</link></title>
<itemizedlist>
<!--
Author: Tom Lane <tgl@sss.pgh.pa.us>
2022-04-30 [ccd10a9bf] Tighten enforcement of variable CONSTANT markings in plp
-->
<listitem>
<para>
Fix enforcement of PL/pgSQL variable CONSTANT markings (Tom Lane)
</para>
<para>
Previously, a variable used as a CALL output parameter or refcursor OPEN variable would not enforce CONSTANT.
</para>
</listitem> </itemizedlist>
</sect3>
<sect3>
<title>Client Interfaces</title>
<itemizedlist>
<!--
Author: Peter Eisentraut <peter@eisentraut.org>
2022-04-01 [c1932e542] libpq: Allow IP address SANs in server certificates
-->
<listitem>
<para>
Allow IP address matching against a server certificate's Subject Alternative Name (Jacob Champion)
</para>
</listitem>
<!--
Author: Daniel Gustafsson <dgustafsson@postgresql.org>
2022-03-29 [ebc8b7d44] Enable SSL library detection via PQsslAttribute()
-->
<listitem>
<para>
Allow PQsslAttribute() to report the SSL library type without requiring a libpq connection (Jacob Champion)
</para>
</listitem>
<!--
Author: Tom Lane <tgl@sss.pgh.pa.us>
2022-01-18 [5987feb70] Make PQcancel use the PGconn's tcp_user_timeout and keep
-->
<listitem>
<para>
Change query cancellations sent by the client to use the same TCP settings as normal client connections (Jelte Fennema)
</para>
<para>
This allows configured TCP timeouts to apply to query cancel connections.
</para>
</listitem>
<!--
Author: Tom Lane <tgl@sss.pgh.pa.us>
2022-02-18 [ce1e7a2f7] Don't let libpq "event" procs break the state of PGresul
Author: Tom Lane <tgl@sss.pgh.pa.us>
2022-02-18 [2e372869a] Don't let libpq PGEVT_CONNRESET callbacks break a PGconn
-->
<listitem>
<para>
Prevent libpq event callback failures from forcing an error result (Tom Lane)
</para>
</listitem>
</itemizedlist>
</sect3>
<sect3>
<title>Client Applications</title>
<itemizedlist>
<!--
Author: Tom Lane <tgl@sss.pgh.pa.us>
2022-01-09 [376ce3e40] Prefer $HOME when looking up the current user's home dir
-->
<listitem>
<para>
On Unix platforms, have client applications like psql check $HOME for the user's home directory before checking the operating system definition (Anders Kaseorg)
</para>
</listitem>
</itemizedlist>
<sect4>
<title><xref linkend="app-psql"/></title>
<itemizedlist>
<!--
Author: Heikki Linnakangas <heikki.linnakangas@iki.fi>
2021-07-14 [eec57115e] In psql \copy from, send data to server in larger chunks
-->
<listitem>
<para>
Improve performance of psql's \copy command (Heikki Linnakangas)
</para>
</listitem>
<!--
Author: Tom Lane <tgl@sss.pgh.pa.us>
2021-12-20 [33d3eeadb] Add a \getenv command to psql.
-->
<listitem>
<para>
Add psql command \getenv to assign the value of an environment variable to a psql variable (Tom Lane)
</para>
</listitem>
<!--
Author: Tom Lane <tgl@sss.pgh.pa.us>
2022-01-06 [328dfbdab] Extend psql's \lo_list/\dl to be able to print large obj
-->
<listitem>
<para>
Add '+' option to psql's \lo_list/\dl to show object privileges (Pavel Luzanov)
</para>
</listitem>
<!--
Author: Tom Lane <tgl@sss.pgh.pa.us>
2022-04-07 [3e707fbb4] psql: add \dconfig command to show server's configuratio
Author: Tom Lane <tgl@sss.pgh.pa.us>
2022-04-11 [5e70d8b5d] Tweak the default behavior of psql's \dconfig.
Author: Tom Lane <tgl@sss.pgh.pa.us>
2022-04-13 [139d46ee2] Further tweak the default behavior of psql's \dconfig.
-->
<listitem>
<para>
Add psql \dconfig to report server variables (Mark Dilger, Tom Lane)
</para>
<para>
This is similar to the server-side SHOW command but can process patterns.
</para>
</listitem>
<!--
Author: Thomas Munro <tmunro@postgresql.org>
2021-07-13 [7c09d2797] Add PSQL_WATCH_PAGER for psql's \watch command.
-->
<listitem>
<para>
Add pager option for psql's \watch command (Pavel Stehule, Thomas Munro)
</para>
<para>
This is only supported on Unix, and is controlled by PSQL_WATCH_PAGER.
</para>
</listitem>
<!--
Author: Tom Lane <tgl@sss.pgh.pa.us>
2021-12-01 [83884682f] psql: include intra-query "- -" comments in what's sent t
Author: Tom Lane <tgl@sss.pgh.pa.us>
2021-12-01 [c2f654930] psql: treat "- -" comments between queries as separate hi
-->
<listitem>
<para>
Have psql send intra-query double-hyphen comments to the server (Tom Lane, Greg Nancarrow)
</para>
<para>
Previously such comments were removed from the query before being sent. Double-hyphen comments that are before query text are not sent, and are not recorded as separate psql history entries.
</para>
</listitem>
<!--
Author: Tom Lane <tgl@sss.pgh.pa.us>
2021-12-01 [3d858af07] psql: initialize comment-begin setting to a useful value
-->
<listitem>
<para>
Adjust psql's readline meta-# to insert a double-hyphen comment marker (Tom Lane)
</para>
<para>
Previously an unhelpful pound marker was inserted.
</para>
</listitem>
<!--
Author: Peter Eisentraut <peter@eisentraut.org>
2022-04-04 [7844c9918] psql: Show all query results by default
-->
<listitem>
<para>
Have psql output all results if multiple queries are passed to the server at once (Fabien Coelho)
</para>
<para>
This can be disabled by setting SHOW_ALL_RESULTS.
</para>
</listitem>
<!--
Author: Michael Paquier <michael@paquier.xyz>
2021-08-10 [e2ce88b58] Add tab completion for DECLARE .. ASENSITIVE in psql
Author: Michael Paquier <michael@paquier.xyz>
2021-08-25 [346511313] Add tab completion for EXPLAIN .. EXECUTE in psql
Author: Michael Paquier <michael@paquier.xyz>
2021-08-30 [d3fa87657] Add more tab completion support for ALTER TABLE ADD in p
Author: Michael Paquier <michael@paquier.xyz>
2021-08-31 [f2bbadce6] Add tab completion for data types after ALTER TABLE ADD
Author: Fujii Masao <fujii@postgresql.org>
2021-09-01 [b0c066297] Improve tab-completion for CREATE PUBLICATION.
Author: Fujii Masao <fujii@postgresql.org>
2021-10-05 [0b0d277c3] psql: Improve tab-completion for LOCK TABLE.
Author: Michael Paquier <michael@paquier.xyz>
2021-11-05 [a5b336b8b] Improve psql tab completion for COMMENT
Author: Michael Paquier <michael@paquier.xyz>
2021-11-19 [0cd6d3b3c] Improve psql tab completion for transforms, domains and
Author: Michael Paquier <michael@paquier.xyz>
2021-11-29 [f44ceb46e] Improve psql tab completion for views, FDWs, sequences a
Author: Michael Paquier <michael@paquier.xyz>
2021-12-01 [9270778f4] Improve psql tab completion for various DROP commands
Author: Tom Lane <tgl@sss.pgh.pa.us>
2022-01-03 [dfe67c0e8] Tab completion: don't offer valid constraints in VALIDAT
Author: Fujii Masao <fujii@postgresql.org>
2022-01-15 [74527c3e0] Add tab-completion for CREATE FOREIGN TABLE.
Author: Peter Eisentraut <peter@eisentraut.org>
2022-01-27 [fefce9ef9] psql: Add tab completion for ALTER COLLATION / REFRESH V
Author: Alvaro Herrera <alvherre@alvh.no-ip.org>
2022-01-28 [95787e849] Tab-complete ALTER PUBLICATION ADD TABLE with list of ta
Author: Tom Lane <tgl@sss.pgh.pa.us>
2022-01-30 [02b8048ba] psql: improve tab-complete's handling of variant SQL nam
Author: Tom Lane <tgl@sss.pgh.pa.us>
2022-02-01 [020258fbd] Treat case of tab-completion keywords a bit more careful
Author: Tom Lane <tgl@sss.pgh.pa.us>
2022-02-09 [f0cd9097c] Further tweaks for psql's new tab-completion logic.
Author: Tom Lane <tgl@sss.pgh.pa.us>
2022-03-20 [7fa3db367] psql: handle tab completion of timezone names after "SET
Author: Tomas Vondra <tomas.vondra@postgresql.org>
2022-03-25 [2d2232933] Update tab-completion for CREATE PUBLICATION with sequen
Author: Tom Lane <tgl@sss.pgh.pa.us>
2022-04-13 [b5607b074] Fix case sensitivity in psql's tab completion for GUC na
-->
<listitem>
<para>
Improve psql's tab completion (Shinya Kato, Dagfinn Ilmari Mannsåker, Peter Smith, Koyu Tanigawa, Ken Kato, David Fetter, Haiying Tang, Peter Eisentraut, Álvaro Herrera, Tom Lane, Masahiko Sawada)
</para>
</listitem>
<!--
Author: Tom Lane <tgl@sss.pgh.pa.us>
2021-12-16 [cf0cab868] Remove psql support for server versions preceding 9.2.
-->
<listitem>
<para>
Limit support of psql to servers running PostgreSQL 9.2 and later (Tom Lane)
</para>
</listitem>
</itemizedlist>
</sect4>
</sect3>
<sect3>
<title>Server Applications</title>
<itemizedlist>
<!--
Author: Robert Haas <rhaas@postgresql.org>
2022-01-20 [3500ccc39] Support base backup targets.
-->
<listitem>
<para>
Add new pg_basebackup option --target to control the base backup location (Robert Haas)
</para>
<para>
New output options are 'server' to write the backup locally and 'blackhole' to discard the backup (for testing).
</para>
</listitem>
<!--
Author: Robert Haas <rhaas@postgresql.org>
2022-02-11 [751b8d23b] pg_basebackup: Allow client-side LZ4 (de)compression.
Author: Robert Haas <rhaas@postgresql.org>
2022-03-08 [7cf085f07] Add support for zstd base backup compression.
-->
<listitem>
<para>
Allow pg_basebackup to decompress LZ4 and Zstandard compressed server-side base backups, and compress output files with LZ4 and Zstandard (Dipesh Pandit, Jeevan Ladhe)
</para>
</listitem>
<!--
Author: Michael Paquier <michael@paquier.xyz>
2022-01-21 [5c649fe15] Extend the options of pg_basebackup to control compressi
Author: Robert Haas <rhaas@postgresql.org>
2022-01-24 [0ad803291] Server-side gzip compression.
Author: Robert Haas <rhaas@postgresql.org>
2022-01-25 [e1f860f13] Tidy up a few cosmetic issues related to pg_basebackup.
-->
<listitem>
<para>
Allow pg_basebackup's --compress option to control the compression method and options (Michael Paquier, Robert Haas)
</para>
<para>
New options include "server-gzip" (gzip on the server), "client-gzip" (same as "gzip").
</para>
</listitem>
<!--
Author: Robert Haas <rhaas@postgresql.org>
2022-01-28 [d45099425] Allow server-side compression to be used with -Fp.
-->
<listitem>
<para>
Allow pg_basebackup to compress on the server side and decompress on the client side before storage (Dipesh Pandit)
</para>
<para>
This is accomplished by specifying compression on the server side and plain output format.
</para>
</listitem>
<!--
Author: Michael Paquier <michael@paquier.xyz>
2021-11-05 [babbbb595] Add support for LZ4 compression in pg_receivewal
Author: Michael Paquier <michael@paquier.xyz>
2022-04-13 [042a923ad] Rework compression options of pg_receivewal
-->
<listitem>
<para>
Add the LZ4 compression method to pg_receivewal (Georgios Kokolatos)
</para>
<para>
This is enabled via --compress=lz4 and requires binaries to be built using --with-lz4.
</para>
</listitem>
<!--
Author: Michael Paquier <michael@paquier.xyz>
2021-11-04 [d62bcc8b0] Rework compression options of pg_receivewal
-->
<listitem>
<para>
Add additional capabilities to pg_receivewal's --compress option (Georgios Kokolatos)
</para>
</listitem>
<!--
Author: Michael Paquier <michael@paquier.xyz>
2021-10-26 [f61e1dd2c] Allow pg_receivewal to stream from a slot's restart LSN
-->
<listitem>
<para>
Improve pg_receivewal's ability to restart at the proper WAL location (Ronan Dunklau)
</para>
<para>
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
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.
</para>
</listitem>
<!--
Author: Tatsuo Ishii <ishii@postgresql.org>
2022-03-23 [4a39f87ac] Allow pgbench to retry in some cases.
-->
<listitem>
<para>
Allow pgbench to retry after serialization and deadlock failures (Yugo Nagata, Marina Polyakova)
</para>
</listitem>
</itemizedlist>
<sect4>
<title>pg_dump</title>
<itemizedlist>
<!--
Author: Noah Misch <noah@leadboat.com>
2021-06-28 [a7a7be1f2] Dump public schema ownership and security labels.
Author: Noah Misch <noah@leadboat.com>
2021-06-28 [7ac10f692] Dump COMMENT ON SCHEMA public.
-->
<listitem>
<para>
Have pg_dump dump "public" schema ownership changes and security labels (Noah Misch)
</para>
<para>
It also dumps "public" schema comments.
</para>
</listitem>
<!--
Author: Tom Lane <tgl@sss.pgh.pa.us>
2021-12-06 [989596152] Avoid per-object queries in performance-critical paths i
Author: Tom Lane <tgl@sss.pgh.pa.us>
2021-12-06 [be85727a3] Use PREPARE/EXECUTE for repetitive per-object queries in
Author: Tom Lane <tgl@sss.pgh.pa.us>
2021-12-31 [d5e8930f5] pg_dump: minor performance improvements from eliminating
-->
<listitem>
<para>
Improve performance of dumping databases with many objects (Tom Lane)
</para>
<para>
This will also improve the performance of pg_upgrade.
</para>
</listitem>
<!--
Author: Tom Lane <tgl@sss.pgh.pa.us>
2021-12-06 [65aaed22a] Account for TOAST data while scheduling parallel dumps.
-->
<listitem>
<para>
Improve the parallel pg_dump performance of TOAST tables (Tom Lane)
</para>
</listitem>
<!--
Author: Michael Paquier <michael@paquier.xyz>
2022-01-17 [215862886] Add support for - -no-table-access-method in pg_{dump,dum
-->
<listitem>
<para>
Add dump/restore option --no-table-access-method to force restore to only use the default table access method (Justin Pryzby)
</para>
</listitem>
<!--
Author: Tom Lane <tgl@sss.pgh.pa.us>
2021-12-14 [30e7c175b] Remove pg_dump/pg_dumpall support for dumping from pre-9
-->
<listitem>
<para>
Limit support of pg_dump and pg_dumpall to servers running PostgreSQL 9.2 and later (Tom Lane)
</para>
</listitem>
</itemizedlist>
</sect4>
<sect4>
<title>pg_upgrade</title>
<itemizedlist>
<!--
Author: Andres Freund <andres@anarazel.de>
2022-02-21 [27b02e070] pg_upgrade: Don't print progress status when output is n
-->
<listitem>
<para>
Disable default status reporting during pg_upgrade operation if the output is not a terminal (Andres Freund)
</para>
<para>
The status reporting output can be enabled for non-tty usage by using --verbose.
</para>
</listitem>
<!--
Author: Daniel Gustafsson <dgustafsson@postgresql.org>
2022-03-24 [26ebb0e28] List offending databases in pg_upgrade datallowconn chec
-->
<listitem>
<para>
Have pg_upgrade report all databases with invalid connection settings (Jeevan Ladhe)
</para>
<para>
Previously only the first database with an invalid connection setting was reported.
</para>
</listitem>
<!--
Author: Michael Paquier <michael@paquier.xyz>
2022-02-06 [38bfae365] pg_upgrade: Move all the files generated internally to a
Author: Michael Paquier <michael@paquier.xyz>
2022-02-15 [a00849630] Fix thinko with subdirectories generated by pg_upgrade f
-->
<listitem>
<para>
Store pg_upgrade temporary files in a new cluster subdirectory called "pg_upgrade_output".d (Justin Pryzby)
</para>
<para>
Previously temporary files were stored in the current directory.
</para>
</listitem>
<!--
Author: Robert Haas <rhaas@postgresql.org>
2022-01-17 [9a974cbcb] pg_upgrade: Preserve relfilenodes and tablespace OIDs.
Author: Robert Haas <rhaas@postgresql.org>
2022-01-24 [aa0105141] pg_upgrade: Preserve database OIDs.
-->
<listitem>
<para>
Have pg_upgrade preserve relfilenodes, tablespace, and database OIDs between old and new clusters (Shruthi KC, Antonin Houska)
</para>
</listitem>
<!--
Author: Michael Paquier <michael@paquier.xyz>
2021-12-18 [3d5ffccb6] Add option -N/- -no-sync to pg_upgrade
-->
<listitem>
<para>
Add a --no-sync option to pg_upgrade (Michael Paquier)
</para>
<para>
This useful only for testing.
</para>
</listitem>
<!--
Author: Tom Lane <tgl@sss.pgh.pa.us>
2021-12-14 [e469f0aaf] Remove pg_upgrade support for upgrading from pre-9.2 ser
-->
<listitem>
<para>
Limit support of pg_upgrade to old servers running PostgreSQL 9.2 and later (Tom Lane)
</para>
</listitem>
</itemizedlist>
</sect4>
<sect4>
<title>pg_waldump</title>
<itemizedlist>
<!--
Author: Thomas Munro <tmunro@postgresql.org>
2022-03-24 [127aea2a6] Add additional filtering options to pg_waldump.
Author: Thomas Munro <tmunro@postgresql.org>
2022-03-25 [52b556843] Improve command line options for pg_waldump.
-->
<listitem>
<para>
Allow pg_waldump to be filtered by relation file node, block number, fork number, and full page images (David Christensen, Thomas Munro)
</para>
</listitem>
<!--
Author: Michael Paquier <michael@paquier.xyz>
2021-12-02 [f2c52eeba] pg_waldump: Emit stats summary when interrupted by SIGIN
-->
<listitem>
<para>
Have pg_waldump report statistics before an interrupted exit (Bharath Rupireddy)
</para>
<para>
For example, issuing a control-C in a terminal running "pg_waldump --stats --follow" will report the current statistics before exiting. This does not work on Windows.
</para>
</listitem>
<!--
Author: Michael Paquier <michael@paquier.xyz>
2021-12-13 [c8b733c4c] Improve description of some WAL records with transaction
-->
<listitem>
<para>
Improve descriptions of some transaction WAL records reported by pg_waldump (Masahiko Sawada, Michael Paquier)
</para>
</listitem>
<!--
Author: Heikki Linnakangas <heikki.linnakangas@iki.fi>
2021-07-01 [c8bf5098c] Allow specifying pg_waldump - -rmgr option multiple times
-->
<listitem>
<para>
Allow pg_waldump to dump information about multiple resource managers (Heikki Linnakangas)
</para>
<para>
This is enabled by specifying the --rmgr option multiple times.
</para>
</listitem>
<!--
Author: Michael Paquier <michael@paquier.xyz>
2022-04-07 [0d5c38757] Add option - -config-file to pg_rewind
-->
<listitem>
<para>
Add pg_rewind option --config-file to simplify use when server configuration files are stored outside the data directory (Gunnar "Nick" Bluth)
</para>
</listitem>
</itemizedlist>
</sect4>
</sect3>
<sect3>
<title>Documentation</title>
<itemizedlist>
<!--
Author: Fujii Masao <fujii@postgresql.org>
2021-10-05 [f6b5d05ba] doc: Document pg_encoding_to_char() and pg_char_to_encod
-->
<listitem>
<para>
Add documentation for pg_encoding_to_char() and pg_char_to_encoding() (Ian Lawrence Barwick)
</para>
</listitem>
<!--
Author: Peter Eisentraut <peter@eisentraut.org>
2022-03-30 [b21c4cf95] doc: Document range_intersect_agg(anymultirange)
-->
<listitem>
<para>
Add documentation for range_intersect_agg(anymultirange) (Paul Jungwirth)
</para>
</listitem>
<!--
Author: Tom Lane <tgl@sss.pgh.pa.us>
2021-10-09 [2ae5d72f0] Doc: improve documentation for ^@ starts-with operator.
-->
<listitem>
<para>
Document the ^@ starts-with operator (Tom Lane)
</para>
</listitem>
</itemizedlist>
</sect3>
<sect3>
<title>Source Code</title>
<itemizedlist>
<!--
Author: Andres Freund <andres@anarazel.de>
2021-12-30 [93d973494] ci: Add continuous integration for github repositories v
-->
<listitem>
<para>
Add support for continuous integration testing using cirrus-ci (Andres Freund, Thomas Munro, Melanie Plageman)
</para>
</listitem>
<!--
Author: Robert Haas <rhaas@postgresql.org>
2022-02-18 [6c417bbcc] Add support for building with ZSTD.
-->
<listitem>
<para>
Add configure option --with-zstd to enable Zstandard builds (Jeevan Ladhe, Robert Haas, Michael Paquier)
</para>
</listitem>
<!--
Author: Peter Eisentraut <peter@eisentraut.org>
2021-11-22 [d6d1dfcc9] Add ABI extra field to fmgr magic block
-->
<listitem>
<para>
Add module field which can be customized for non-community PostgreSQL distributions (Peter Eisentraut)
</para>
<para>
A module field mismatch would generate an error.
</para>
</listitem>
<!--
Author: Tom Lane <tgl@sss.pgh.pa.us>
2021-12-11 [07eee5a0d] Create a new type category for "internal use" types.
-->
<listitem>
<para>
Create a new pg_type.typcategory value for "char" (Tom Lane)
</para>
<para>
Some internal-use-only types have also been assigned this new pg_type.typcategory.
</para>
</listitem>
<!--
Author: Robert Haas <rhaas@postgresql.org>
2022-01-18 [cc333f323] Modify pg_basebackup to use a new COPY subprotocol for b
-->
<listitem>
<para>
Add new protocol message TARGET to specify a new COPY method to be for base backups (Robert Haas)
</para>
<para>
Modify pg_basebackup to use this method.
</para>
</listitem>
<!--
Author: Robert Haas <rhaas@postgresql.org>
2022-01-24 [0ad803291] Server-side gzip compression.
Author: Robert Haas <rhaas@postgresql.org>
2022-03-23 [ffd53659c] Replace BASE_BACKUP COMPRESSION_LEVEL option with COMPRE
-->
<listitem>
<para>
Add new protocol message COMPRESSION and COMPRESSION_DETAIL to specify the compression method and options (Robert Haas)
</para>
</listitem>
<!--
Author: Robert Haas <rhaas@postgresql.org>
2022-02-10 [9cd28c2e5] Remove server support for old BASE_BACKUP command syntax
Author: Robert Haas <rhaas@postgresql.org>
2022-02-10 [0d4513b61] Remove server support for the previous base backup proto
-->
<listitem>
<para>
Remove server support for old BASE_BACKUP command syntax and base backup protocol (Robert Haas)
</para>
</listitem>
<!--
Author: Robert Haas <rhaas@postgresql.org>
2022-03-15 [e4ba69f3f] Allow extensions to add new backup targets.
-->
<listitem>
<para>
Add support for extensions to set custom backup targets (Robert Haas)
</para>
</listitem>
<!--
Author: Jeff Davis <jdavis@postgresql.org>
2022-04-06 [5c279a6d3] Custom WAL Resource Managers.
-->
<listitem>
<para>
Allow extensions to define their own WAL resource managers (Jeff Davis)
</para>
</listitem>
<!--
Author: Michael Paquier <michael@paquier.xyz>
2022-01-31 [d10e41d42] Introduce pg_settings_get_flags() to find flags associat
-->
<listitem>
<para>
Add function pg_settings_get_flags() to get the flags of server-side variables (Justin Pryzby)
</para>
</listitem>
<!--
Author: Thomas Munro <tmunro@postgresql.org>
2022-01-15 [7170f2159] Allow "in place" tablespaces.
-->
<listitem>
<para>
Add server variable allow_in_place_tablespaces for tablespace testing (Thomas Munro)
</para>
</listitem>
<!--
Author: Robert Haas <rhaas@postgresql.org>
2022-04-08 [8ec569479] Apply PGDLLIMPORT markings broadly.
-->
<listitem>
<para>
Export all server variables on Windows using PGDLLIMPORT (Robert Haas)
</para>
<para>
Previously only specific variables where exported.
</para>
</listitem>
<!--
Author: Peter Eisentraut <peter@eisentraut.org>
2021-11-05 [db7d1a7b0] pgcrypto: Remove non-OpenSSL support
-->
<listitem>
<para>
Require OpenSSL to build pgcrypto binaries (Peter Eisentraut)
</para>
</listitem>
<!--
Author: Andres Freund <andres@anarazel.de>
2022-02-16 [19252e8ec] plpython: Reject Python 2 during build configuration.
-->
<listitem>
<para>
Disallow building with Python 2 (Andres Freund)
</para>
</listitem>
<!--
Author: Tom Lane <tgl@sss.pgh.pa.us>
2021-10-07 [92e6a98c3] Adjust configure to insist on Perl version >= 5.8.3.
-->
<listitem>
<para>
Adjust configure to require Perl version 5.8.3 or later (Dagfinn Ilmari Mannsåker)
</para>
</listitem>
</itemizedlist>
</sect3>
<sect3>
<title>Additional Modules</title>
<itemizedlist>
<!--
Author: Jeff Davis <jdavis@postgresql.org>
2022-04-08 [2258e76f9] Add contrib/pg_walinspect.
-->
<listitem>
<para>
Add contrib/pg_walinspect (Bharath Rupireddy)
</para>
<para>
This gives SQL-level output similar to pg_waldump.
</para>
</listitem>
<!--
Author: Robert Haas <rhaas@postgresql.org>
2022-02-03 [5ef1eefd7] Allow archiving via loadable modules.
-->
<listitem>
<para>
Add contrib module basic_archive to perform archiving via a library (Nathan Bossart)
</para>
</listitem>
<!--
Author: Robert Haas <rhaas@postgresql.org>
2022-03-15 [c6306db24] Add 'basebackup_to_shell' contrib module.
Author: Robert Haas <rhaas@postgresql.org>
2022-03-30 [26a0c025e] Document basebackup_to_shell.required_role.
-->
<listitem>
<para>
Add contrib module 'basebackup_to_shell' as a custom backup target (Robert Haas)
contrib module.
</para>
</listitem>
<!--
Author: Michael Paquier <michael@paquier.xyz>
2022-04-08 [76cbf7edb] pg_stat_statements: Track I/O timing for temporary file
-->
<listitem>
<para>
Add pg_stat_statements output for temporary file block I/O (Masahiko Sawada)
</para>
</listitem>
<!--
Author: Magnus Hagander <magnus@hagander.net>
2022-04-08 [57d6aea00] Add JIT counters to pg_stat_statements
-->
<listitem>
<para>
Add JIT counters to pg_stat_statements (Magnus Hagander)
</para>
</listitem>
<!--
Author: Peter Eisentraut <peter@eisentraut.org>
2021-09-28 [c3b011d99] Support amcheck of sequences
-->
<listitem>
<para>
Allow amcheck to check sequences (Mark Dilger)
</para>
</listitem>
<!--
Author: Robert Haas <rhaas@postgresql.org>
2021-11-05 [bd807be69] amcheck: Add additional TOAST pointer checks.
-->
<listitem>
<para>
Improve amcheck sanity checks for TOAST tables (Mark Dilger)
</para>
</listitem>
<!--
Author: Tomas Vondra <tomas.vondra@postgresql.org>
2021-11-06 [57e3c5160] Add bool GiST opclass to btree_gist
Author: Tomas Vondra <tomas.vondra@postgresql.org>
2021-11-08 [e2fbb8837] Fix gist_bool_ops to use gbtreekey2
Author: Tomas Vondra <tomas.vondra@postgresql.org>
2021-12-11 [4c6145b51] Add bool to btree_gist documentation
-->
<listitem>
<para>
Allow btree_gist indexes on boolean columns (Emre Hasegeli)
</para>
<para>
These can be used for exclusion constraints.
</para>
</listitem>
<!--
Author: Tom Lane <tgl@sss.pgh.pa.us>
2022-01-12 [134d97463] Include permissive/enforcing state in sepgsql log messag
-->
<listitem>
<para>
Indicate the permissive/enforcing state in sepgsql log messages (Dave Page)
</para>
</listitem>
<!--
Author: Michael Paquier <michael@paquier.xyz>
2021-07-12 [127404fbe] pageinspect: Improve page_header() for pages of 32kB
-->
<listitem>
<para>
Fix pageinspect's page_header() to handle 32 kilobyte page sizes (Quan Zongliang)
</para>
<para>
Previously improper negative values could be returned in certain cases.
</para>
</listitem>
</itemizedlist>
<sect4>
<title><link linkend="postgres-fdw"><application>postgres_fdw</application></link></title>
<itemizedlist>
<!--
Author: Tom Lane <tgl@sss.pgh.pa.us>
2021-07-30 [5d44fff01] In postgres_fdw, allow CASE expressions to be pushed to
-->
<listitem>
<para>
Allow postgres_fdw to push down CASE expressions (Alexander Pyhalov)
</para>
</listitem>
<!--
Author: Fujii Masao <fujii@postgresql.org>
2021-09-07 [449ab6350] postgres_fdw: Allow application_name of remote connectio
Author: Fujii Masao <fujii@postgresql.org>
2021-12-24 [6e0cb3dec] postgres_fdw: Allow postgres_fdw.application_name to inc
Author: Fujii Masao <fujii@postgresql.org>
2022-02-18 [94c49d534] postgres_fdw: Make postgres_fdw.application_name support
-->
<listitem>
<para>
Add server variable postgres_fdw.application_name to control the application name of postgres_fdw connections (Hayato Kuroda)
</para>
<para>
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.
</para>
</listitem>
<!--
Author: Etsuro Fujita <efujita@postgresql.org>
2022-02-24 [04e706d42] postgres_fdw: Add support for parallel commit.
-->
<listitem>
<para>
Allow parallel commit on postgres_fdw servers (Etsuro Fujita)
</para>
<para>
This is enabled with the CREATE SERVER option "parallel_commit" when using postgres_fdw.
</para>
</listitem>
</itemizedlist>
</sect4>
</sect3>
</sect2>
<sect2 id="release-15-acknowledgements">
<title>Acknowledgments</title>
<para>
The following individuals (in alphabetical order) have contributed
to this release as patch authors, committers, reviewers, testers,
or reporters of issues.
</para>
<simplelist>
<member></member>
</simplelist>
</sect2>
</sect1>
|