summaryrefslogtreecommitdiff
path: root/doc/src/sgml/release-17.sgml
blob: 612eb100a7bea51039d9b4f3429797d6e91eba99 (plain)
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
<!-- doc/src/sgml/release-16.sgml -->
<!-- See header comment in release.sgml about typical markup -->

 <sect1 id="release-17">
  <title>Release 17</title>

  <formalpara>
   <title>Release date:</title>
   <para>2024-??-??, AS OF 2024-05-18</para>
  </formalpara>

  <sect2 id="release-17-highlights">
   <title>Overview</title>

   <para>
    <productname>PostgreSQL</productname> 17 contains many new features
    and enhancements, including:
   </para>

   <itemizedlist>
    <listitem><para>TO BE COMPLETED LATER</para></listitem>
   </itemizedlist>

   <para>
    The above items and other new features of
    <productname>PostgreSQL</productname> 17 are explained in more detail
    in the sections below.
   </para>

  </sect2>

  <sect2  id="release-17-migration">

   <title>Migration to Version 17</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 17 contains a number of changes that may affect compatibility
    with previous releases.  Observe the following incompatibilities:
   </para>

   <itemizedlist>

<!--
Author: Jeff Davis <[email protected]>
2024-03-04 [2af07e2f7] Fix search_path to a safe value during maintenance opera
-->

<listitem>
<para>
Change functions to use a safe search_path during maintenance operations (Jeff Davis)
</para>

<para>
This prevents maintenance operations (ANALYZE, CLUSTER, REFRESH MATERIALIZED VIEW, REINDEX, or VACUUM) from performing unsafe access.  Functions used by expression indexes and
materialized views that need to reference non-default schemas must specify a search path during function creation.
</para>
</listitem>

<!--
Author: Michael Paquier <[email protected]>
2023-08-28 [165d581f1] Tighten handling of "ago" in interval values
Author: Michael Paquier <[email protected]>
2023-08-28 [617f9b7d4] Tighten unit parsing in internal values
-->

<listitem>
<para>
Restrict "ago" to only appear at the end in interval values (Joseph Koshakow)
</para>

<para>
Also, prevent empty interval units and interval units from appearing multiple times.
</para>
</listitem>

<!--
Author: Thomas Munro <[email protected]>
2023-09-05 [f691f5b80] Remove the "snapshot too old" feature.
-->

<listitem>
<para>
Remove server variable old_snapshot_threshold (Thomas Munro)
</para>

<para>
This variable allowed vacuum to remove rows that potentially could be still visible to running transactions, causing "snapshot too old" error later if accessed.  This feature
might be re-added to Postgres later if an improved implementation is found.
</para>
</listitem>

<!--
Author: Nathan Bossart <[email protected]>
2023-07-12 [0fef87753] Rename session_auth_is_superuser to current_role_is_supe
-->

<listitem>
<para>
Rename server variable session_auth_is_superuser to the more accurate current_role_is_superuser (Nathan Bossart)
</para>
</listitem>

<!--
Author: Nathan Bossart <[email protected]>
2023-07-13 [a0363ab7a] Fix privilege check for SET SESSION AUTHORIZATION.
-->

<listitem>
<para>
Change SET SESSION AUTHORIZATION handling of the initial session user's superuser status (Joseph Koshakow)
</para>

<para>
The new behavior is based on the session user's superuser status at the time the SET SESSION AUTHORIZATION command is issued, rather than their superuser status at connection time.
</para>
</listitem>

<!--
Author: Nathan Bossart <[email protected]>
2023-07-17 [884eee5bf] Remove db_user_namespace.
-->

<listitem>
<para>
Remove feature which simulated per-database users (Nathan Bossart)
</para>

<para>
The feature, db_user_namespace, was rarely used.
</para>
</listitem>

<!--
Author: Thomas Munro <[email protected]>
2023-07-14 [d0c28601e] Remove wal_sync_method=fsync_writethrough on Windows.
-->

<listitem>
<para>
Remove wal_sync_method value fsync_writethrough on Windows (Thomas Munro)
</para>

<para>
This value was the same as "fsync" on Windows.
</para>
</listitem>

<!--
Author: Bruce Momjian <[email protected]>
2023-11-24 [344afc776] modify segno. for pg_walfile_name() and pg_walfile_name_
-->

<listitem>
<para>
Change file boundary handling of two WAL file name functions (Kyotaro Horiguchi, Andres Freund, Bruce Momjian)
</para>

<para>
The functions pg_walfile_name() and pg_walfile_name_offset() used to report the previous LSN segment number when the LSN was on a file segment boundary;  it now returns the LSN segment.
</para>
</listitem>

<!--
Author: Michael Paquier <[email protected]>
2023-12-11 [c7a3e6b46] Remove trace_recovery_messages
-->

<listitem>
<para>
Remove server variable trace_recovery_messages since it is no longer needed (Bharath Rupireddy)
</para>
</listitem>

<!--
Author: Peter Eisentraut <[email protected]>
2023-08-16 [78806a950] Remove incorrect field from information schema
-->

<listitem>
<para>
Remove information schema column element_types.domain_default (Peter Eisentraut)
</para>
</listitem>

<!--
Author: Bruce Momjian <[email protected]>
2023-09-26 [15d5d7405] pgrowlocks: change lock mode output labels for consiste
-->

<listitem>
<para>
Change pgrowlocks lock mode output labels (Bruce Momjian)
</para>
</listitem>

<!--
Author: Michael Paquier <[email protected]>
2023-10-19 [13d00729d] Rename I/O timing statistics columns to shared_blk_{read
-->

<listitem>
<para>
Rename I/O block read/write timing statistics columns of pg_stat_statements (Nazir Bilal Yavuz)
</para>

<para>
This renames "blk_read_time" to "shared_blk_read_time", and "blk_write_time" to "shared_blk_write_time".
</para>
</listitem>

<!--
Author: Michael Paquier <[email protected]>
2023-10-27 [74604a37f] Remove buffers_backend and buffers_backend_fsync from pg
-->

<listitem>
<para>
Remove buffers_backend and buffers_backend_fsync from pg_stat_checkpointer (Bharath Rupireddy)
</para>

<para>
These fields are considered redundant to similar columns in pg_stat_io.
</para>
</listitem>

<!--
Author: Peter Eisentraut <[email protected]>
2024-01-13 [4f622503d] Make attstattarget nullable
Author: Peter Eisentraut <[email protected]>
2024-03-17 [012460ee9] Make stxstattarget nullable
-->

<listitem>
<para>
Change pg_attribute.attstattarget and pg_attribute.stxstattarget to represent the default statistics target as NULL (Peter Eisentraut)
</para>
</listitem>

<!--
Author: Masahiko Sawada <[email protected]>
2024-04-02 [667e65aac] Use TidStore for dead tuple TIDs storage during lazy vac
-->

<listitem>
<para>
Change pg_stat_progress_vacuum columns max_dead_tuples to max_dead_tuple_bytes and num_dead_tuples to dead_tuple_bytes (Masahiko Sawada)
</para>

<para>
These columns now report bytes instead of tuples.
</para>
</listitem>

<!--
Author: Alvaro Herrera <[email protected]>
2024-02-28 [bcdfa5f2e] Rename SLRU elements in view pg_stat_slru
-->

<listitem>
<para>
Rename SLRU columns in system view pg_stat_slru (Alvaro Herrera)
</para>

<para>
The column names accepted by pg_stat_slru_rest() are also changed.
</para>
</listitem>

   </itemizedlist>

  </sect2>

  <sect2 id="release-17-changes">
   <title>Changes</title>

    <para>
     Below you will find a detailed account of the changes between
    <productname>PostgreSQL</productname> 17 and the previous major
    release.
    </para>

   <sect3 id="release-17-server">
    <title>Server</title>

    <sect4 id="release-17-optimizer">
     <title>Optimizer</title>

     <itemizedlist>

<!--
Author: Tom Lane <[email protected]>
2023-11-17 [f7816aec2] Extract column statistics from CTE references, if possib
-->

<listitem>
<para>
Allow the optimizer to improve CTE plans by considering the statistics of columns referenced in earlier row output clauses (Jian Guo, Tom Lane)
</para>
</listitem>

<!--
Author: Tom Lane <[email protected]>
2024-03-26 [a65724dfa] Propagate pathkeys from CTEs up to the outer query.
-->

<listitem>
<para>
Allow the optimizer to improve CTE plans by considering the sort order of columns referenced in earlier row output clauses (Richard Guo)
</para>
</listitem>

<!--
Author: David Rowley <[email protected]>
2024-01-23 [b262ad440] Add better handling of redundant IS [NOT] NULL quals
Author: David Rowley <[email protected]>
2024-04-12 [3af704098] Fix IS [NOT] NULL qual optimization for inheritance tabl
-->

<listitem>
<para>
Improve optimization of IS NOT NULL and IS NULL query restrictions (David Rowley, Richard Guo, Andy Fan)
</para>

<para>
Remove IS NOT NULL query restrictions on NOT NULL columns and eliminate scans on NOT NULL columns if IS NULL is specified.
</para>
</listitem>

<!--
Author: David Rowley <[email protected]>
2024-03-04 [07c36c133] Support partition pruning on boolcol IS [NOT] UNKNOWN
-->

<listitem>
<para>
Allow partition pruning on boolean columns on IS [NOT] UNKNOWN conditionals (David Rowley)
</para>
</listitem>

<!--
Author: Tom Lane <[email protected]>
2024-01-20 [075df6b20] Add planner support functions for range operators &lt;@ and
-->

<listitem>
<para>
Improve optimization of range values when using containment operators &lt;@ and @&gt; (Kim Johan Andersson, Jian He)
</para>
</listitem>

<!--
Author: Alexander Korotkov <[email protected]>
2024-02-15 [9f1337639] Pull up ANY-SUBLINK with the necessary lateral support.
-->

<listitem>
<para>
Allow correlated IN subqueries to be transformed into joins (Andy Fan, Tom Lane)
</para>
</listitem>

<!--
Author: David Rowley <[email protected]>
2023-10-05 [a8a968a82] Consider cheap startup paths in add_paths_to_append_rel
-->

<listitem>
<para>
Improve optimization of the LIMIT clause on partitioned tables, inheritance parents, and UNION ALL queries (Andy Fan, David Rowley)
</para>
</listitem>

<!--
Author: Tom Lane <[email protected]>
2023-07-14 [e08d74ca1] Allow plan nodes with initPlans to be considered paralle
-->

<listitem>
<para>
Allow query nodes to be run in parallel in more cases (Tom Lane)
</para>
</listitem>

<!--
Author: Alexander Korotkov <[email protected]>
2024-01-21 [0452b461b] Explore alternative orderings of group-by pathkeys durin
-->

<listitem>
<para>
Allow GROUP BY columns to be internally ordered to match ORDER BY (Andrei Lepikhov, Teodor Sigaev)
</para>

<para>
This can be disabled using server variable enable_group_by_reordering.
</para>
</listitem>

<!--
Author: David Rowley <[email protected]>
2024-03-25 [66c0185a3] Allow planner to use Merge Append to efficiently impleme
-->

<listitem>
<para>
Allow UNION (without ALL) to use MergeAppend (David Rowley)
</para>
</listitem>

<!--
Author: David Rowley <[email protected]>
2024-02-01 [9d1a5354f] Fix costing bug in MergeAppend
-->

<listitem>
<para>
Fix MergeAppend plans to more accurately compute the number of rows that need to be sorted (Alexander Kuzmenkov)
</para>
</listitem>

<!--
Author: David Rowley <[email protected]>
2023-07-04 [625d5b3ca] Allow Incremental Sorts on GiST and SP-GiST indexes
-->

<listitem>
<para>
Allow GiST and SP-GiST indexes to be part of incremental sorts (Miroslav Bendik)
</para>

<para>
This is particularly useful for ORDER BY clauses where the first column has a GiST and SP-GiST index, and other columns do not.
</para>
</listitem>

<!--
Author: Alexander Korotkov <[email protected]>
2023-11-27 [bc3c8db8a] Display length and bounds histograms in pg_stats
-->

<listitem>
<para>
Add columns to pg_stats to report range-type histogram information (Egor Rogov, Soumyadeep Chakraborty)
</para>
</listitem>

     </itemizedlist>

    </sect4>

    <sect4 id="release-17-indexes">
     <title>Indexes</title>

     <itemizedlist>
<!--
Author: Peter Geoghegan <[email protected]>
2024-04-06 [5bf748b86] Enhance nbtree ScalarArrayOp execution.
-->

<listitem>
<para>
Allow btree indexes to more efficiently find array matches (Peter Geoghegan, Matthias van de Meent)
</para>
</listitem>

<!--
Author: Tomas Vondra <[email protected]>
2023-12-08 [b43757171] Allow parallel CREATE INDEX for BRIN indexes
-->

<listitem>
<para>
Allow BRIN indexes to be created using parallel workers (Tomas Vondra, Matthias van de Meent)
</para>
</listitem>

     </itemizedlist>

    </sect4>

    <sect4 id="release-17-performance">
     <title>General Performance</title>

     <itemizedlist>

<!--
Author: Heikki Linnakangas <[email protected]>
2024-04-03 [6dbb49026] Combine freezing and pruning steps in VACUUM
-->

<listitem>
<para>
Allow vacuum to more efficiently remove and freeze tuples (Melanie Plageman)
</para>

<para>
WAL traffic caused by vacuum is also more compact.
</para>
</listitem>

<!--
Author: John Naylor <[email protected]>
2024-03-07 [ee1b30f12] Add template for adaptive radix tree
Author: Masahiko Sawada <[email protected]>
2024-03-21 [30e144287] Add TIDStore, to store sets of TIDs (ItemPointerData) ef
Author: Masahiko Sawada <[email protected]>
2024-04-02 [667e65aac] Use TidStore for dead tuple TIDs storage during lazy vac
Author: Heikki Linnakangas <[email protected]>
2024-04-03 [6dbb49026] Combine freezing and pruning steps in VACUUM
-->

<listitem>
<para>
Allow vacuum to more efficiently store tuple references (Masahiko Sawada, John Naylor)
</para>

<para>
Additionally, vacuum is no longer silently limited to one gigabyte of memory when maintenance_work_mem or autovacuum_work_mem are higher.
</para>
</listitem>

<!--
Author: Robert Haas <[email protected]>
2024-01-18 [c120550ed] Optimize vacuuming of relations with no indexes.
-->

<listitem>
<para>
Optimize vacuuming of relations with no indexes (Melanie Plageman)
</para>
</listitem>

<!--
Author: Thomas Munro <[email protected]>
2024-04-06 [98f320eb2] Increase default vacuum_buffer_usage_limit to 2MB.
-->

<listitem>
<para>
Increase default vacuum_buffer_usage_limit to 2MB (Thomas Munro)
</para>
</listitem>

<!--
Author: Nathan Bossart <[email protected]>
2024-03-26 [d365ae705] Optimize roles_is_member_of() with a Bloom filter.
-->

<listitem>
<para>
Improve performance when checking roles with many memberships (Nathan Bossart)
</para>
</listitem>

<!--
Author: Michael Paquier <[email protected]>
2023-07-25 [71e4cc6b8] Optimize WAL insertion lock acquisition and release with
-->

<listitem>
<para>
Improve performance of heavily-contended WAL writes (Bharath Rupireddy)
</para>
</listitem>

<!--
Author: David Rowley <[email protected]>
2024-04-07 [c4ab7da60] Avoid needless large memcpys in libpq socket writing
-->

<listitem>
<para>
Improve performance when transferring large blocks of data to a client (Melih Mutlu)
</para>
</listitem>

<!--
Author: Thomas Munro <[email protected]>
2024-04-03 [210622c60] Provide vectored variant of ReadBuffer().
Author: Thomas Munro <[email protected]>
2024-04-08 [b7b0f3f27] Use streaming I/O in sequential scans.
Author: Thomas Munro <[email protected]>
2024-04-08 [041b96802] Use streaming I/O in ANALYZE.
-->

<listitem>
<para>
Allow the grouping of file system reads with the new system variable io_combine_limit (Thomas Munro, Andres Freund, Melanie Plageman, Nazir Bilal Yavuz)
</para>
</listitem>

     </itemizedlist>

    </sect4>

    <sect4 id="release-17-monitoring">
     <title>Monitoring</title>

     <itemizedlist>

<!--
Author: Michael Paquier <[email protected]>
2023-10-30 [96f052613] Introduce pg_stat_checkpointer
Author: Alexander Korotkov <[email protected]>
2023-12-25 [12915a58e] Enhance checkpointer restartpoint statistics
Author: Alexander Korotkov <[email protected]>
2024-03-14 [e820db5b5] Improve documentation for pg_stat_checkpointer fields
-->

<listitem>
<para>
Create system view pg_stat_checkpointer (Bharath Rupireddy, Anton A. Melnikov, Alexander Korotkov)
</para>

<para>
Relevant columns have been removed from pg_stat_bgwriter and added to this new system view.
</para>
</listitem>

<!--
Author: Michael Paquier <[email protected]>
2023-11-12 [23c8c0c8f] Add ability to reset all shared stats types in pg_stat_r
-->

<listitem>
<para>
Allow pg_stat_reset_shared() to reset all shared statistics (Atsushi Torikoshi)
</para>

<para>
This is done by passing NULL.
</para>
</listitem>

<!--
Author: Michael Paquier <[email protected]>
2023-11-16 [2e8a0edc2] Add target "slru" to pg_stat_reset_shared()
-->

<listitem>
<para>
Allow pg_stat_reset_shared("slru") to clear SLRU statistics (Atsushi Torikoshi)
</para>

<para>
Now pg_stat_reset_shared(NULL) also resets SLRU statistics.
</para>
</listitem>

<!--
Author: Michael Paquier <[email protected]>
2023-11-14 [e5cca6288] Add support for pg_stat_reset_slru without argument
-->

<listitem>
<para>
Allow pg_stat_reset_slru() to reset all SLRU statistics (Bharath Rupireddy)
</para>

<para>
The command pg_stat_reset_slru(NULL) already did this.
</para>
</listitem>

<!--
Author: Michael Paquier <[email protected]>
2024-01-25 [1d35f705e] Add more LOG messages when starting and ending recovery
-->

<listitem>
<para>
Add log messages related to WAL recovery from backup (Andres Freund)
</para>
</listitem>

<!--
Author: Michael Paquier <[email protected]>
2023-08-26 [e48b19c5d] Generate new LOG for "trust" connections under log_conne
-->

<listitem>
<para>
Add log_connections log line for "trust" connections (Jacob Champion)
</para>
</listitem>

<!--
Author: Amit Kapila <[email protected]>
2023-11-21 [7c3fb505b] Log messages for replication slot acquisition and releas
-->

<listitem>
<para>
Add log message to report walsender acquisition and release of replication slots (Bharath Rupireddy)
</para>

<para>
This is enabled by the server variable log_replication_commands.
</para>
</listitem>

<!--
Author: Michael Paquier <[email protected]>
2024-04-04 [2a217c371] Coordinate emit_log_hook and all log destinations to sha
-->

<listitem>
<para>
Fix emit_log_hook to use the same time value as other log records for the same query (Kambam Vinay, Michael Paquier)
</para>
</listitem>

<!--
Author: Michael Paquier <[email protected]>
2023-08-20 [1e68e43d3] Add system view pg_wait_events
-->

<listitem>
<para>
Add system view pg_wait_events that reports wait event types (Bertrand Drouvot)
</para>

<para>
This is useful for adding descriptions to wait events reported in pg_stat_activity.
</para>
</listitem>

<!--
Author: Thomas Munro <[email protected]>
2023-10-13 [0013ba290] Add wait events for checkpoint delay mechanism.
-->

<listitem>
<para>
Add wait events for checkpoint delays (Thomas Munro)
</para>
</listitem>

<!--
Author: Masahiko Sawada <[email protected]>
2023-07-11 [46ebdfe16] Report index vacuum progress.
-->

<listitem>
<para>
Allow vacuum to report the progress of index processing (Sami Imseih)
</para>

<para>
This appears in system view columns pg_stat_progress_vacuum.indexes_total and pg_stat_progress_vacuum.indexes_processed.
</para>
</listitem>

<!--
Author: Heikki Linnakangas <[email protected]>
2024-04-08 [705843d29] Enhance libpq encryption negotiation tests with new GUC
Author: Heikki Linnakangas <[email protected]>
2024-04-08 [3dbd2ff78] Adjust wording of trace_connection_negotiation GUC's des
-->

<listitem>
<para>
Add server variable trace_connection_negotiation to allow debugging of connection encryption (Heikki Linnakangas, Kyotaro Horiguchi)
</para>
</listitem>

     </itemizedlist>

    </sect4>

    <sect4 id="release-17-privileges">
     <title>Privileges</title>

     <itemizedlist>

<!--
Author: Nathan Bossart <[email protected]>
2024-03-13 [ecb0fd337] Reintroduce MAINTAIN privilege and pg_maintain predefine
-->

<listitem>
<para>
Add per-table GRANT permission MAINTAIN to control maintenance operations (Nathan Bossart)
</para>

<para>
The operations are VACUUM, ANALYZE, REINDEX, REFRESH MATERIALIZED VIEW, CLUSTER, and LOCK TABLE.
</para>
</listitem>

<!--
Author: Nathan Bossart <[email protected]>
2024-03-13 [ecb0fd337] Reintroduce MAINTAIN privilege and pg_maintain predefine
-->

<listitem>
<para>
Add user-grantable role pg_maintain to control maintenance operations (Nathan Bossart)
</para>

<para>
The operations are VACUUM, ANALYZE, REINDEX, REFRESH MATERIALIZED VIEW, CLUSTER, and LOCK TABLE.
</para>
</listitem>

<!--
Author: Nathan Bossart <[email protected]>
2024-02-14 [8d8afd48d] Allow pg_monitor to execute pg_current_logfile().
-->

<listitem>
<para>
Allow roles with pg_monitor membership to execute pg_current_logfile() (Pavlo Golub, Nathan Bossart)
</para>
</listitem>

     </itemizedlist>

    </sect4>

    <sect4 id="release-17-server-config">
     <title>Server Configuration</title>

     <itemizedlist>

<!--
Author: Robert Haas <[email protected]>
2024-03-29 [d3ae2a24f] Add allow_alter_system GUC.
-->

<listitem>
<para>
Add system variable allow_alter_system to disallow ALTER SYSTEM (Jelte Fennema-Nio, Gabriele Bartolini)
</para>
</listitem>

<!--
Author: Tom Lane <[email protected]>
2023-10-21 [2d870b4ae] Allow ALTER SYSTEM to set unrecognized custom GUCs.
-->

<listitem>
<para>
Allow ALTER SYSTEM to set unrecognized custom server variables (Tom Lane)
</para>

<para>
This is also possible with GRANT ON PARAMETER.
</para>
</listitem>

<!--
Author: Alexander Korotkov <[email protected]>
2024-02-15 [51efe38cb] Introduce transaction_timeout
Author: Alexander Korotkov <[email protected]>
2024-02-16 [bf82f4379] Followup fixes for transaction_timeout
Author: Alexander Korotkov <[email protected]>
2024-02-25 [28e858c0f] Improve documentation and GUC description for transactio
-->

<listitem>
<para>
Add server variable transaction_timeout to restrict the duration of transactions (Andrey Borodin, Japin Li, Junwang Zhao, Alexander Korotkov)
</para>
</listitem>

<!--
Author: Jeff Davis <[email protected]>
2024-03-13 [2d819a08a] Introduce "builtin" collation provider.
Author: Jeff Davis <[email protected]>
2024-03-18 [846311051] Address more review comments on commit 2d819a08a1.
Author: Jeff Davis <[email protected]>
2024-03-19 [f69319f2f] Support C.UTF-8 locale in the new builtin collation prov
Author: Jeff Davis <[email protected]>
2024-03-20 [9acae56ce] Inline basic UTF-8 functions.
-->

<listitem>
<para>
Create "builtin" collation provider similar to libc's C locale (Jeff Davis)
</para>

<para>
While its C locale is similar but independent of libc, its C.UTF-8 locale sorts by Unicode code points and has Unicode-based case folding.
</para>
</listitem>

<!--
Author: Michael Paquier <[email protected]>
2023-07-06 [a14354cac] Add GUC parameter "huge_pages_status"
-->

<listitem>
<para>
Add server variable huge_pages_status to report the use of huge pages by Postgres (Justin Pryzby)
</para>

<para>
This is useful when huge_pages is set to "try".
</para>
</listitem>

<!--
Author: Daniel Gustafsson <[email protected]>
2023-09-25 [7750fefdb] Add GUC for temporarily disabling event triggers
-->

<listitem>
<para>
Add server variable to disable event triggers (Daniel Gustafsson)
</para>

<para>
The setting, event_triggers, allows for the temporary disabling of event triggers for debugging.
</para>
</listitem>

<!--
Author: Alvaro Herrera <[email protected]>
2024-02-28 [53c2a97a9] Improve performance of subsystems on top of SLRU
-->

<listitem>
<para>
Allow the SLRU cache sizes to be configured (Andrey Borodin, Dilip Kumar)
</para>

<para>
The new server variables are commit_timestamp_buffers, multixact_member_buffers, multixact_offset_buffers, notify_buffers, serializable_buffers, subtransaction_buffers, and
transaction_buffers.
</para>
</listitem>

     </itemizedlist>

    </sect4>

    <sect4 id="release-17-replication">
     <title>Streaming Replication and Recovery</title>

     <itemizedlist>

<!--
Author: Robert Haas <[email protected]>
2023-12-20 [dc2123400] Add support for incremental backup.
Author: Tomas Vondra <[email protected]>
2024-04-05 [f8ce4ed78] Allow copying files using clone/copy_file_range
-->

<listitem>
<para>
Add support for incremental file system backup (Robert Haas, Jakub Wartak, Tomas Vondra)
</para>

<para>
Incremental backups can be created using pg_basebackup's new --incremental option.  The new application pg_combinebackup allows manipulation of base and incremental file system backups.
</para>
</listitem>

<!--
Author: Robert Haas <[email protected]>
2023-12-20 [174c48050] Add a new WAL summarizer process.
Author: Nathan Bossart <[email protected]>
2024-01-09 [d97ef756a] Fix documentation for wal_summary_keep_time.
Author: Robert Haas <[email protected]>
2024-01-09 [f896057e4] Document WAL summarization information functions.
Author: Robert Haas <[email protected]>
2024-01-11 [d9ef650fc] Add new function pg_get_wal_summarizer_state().
-->

<listitem>
<para>
Allow the creation of WAL summarization files (Robert Haas, Nathan Bossart, Hubert Depesz Lubaczewski)
</para>

<para>
These files record the block numbers that have changed within an LSN range and are useful for incremental file system backups.  This is controlled by the server variables
summarize_wal and wal_summarize_keep_time, and introspected with pg_available_wal_summaries(), pg_wal_summary_contents(), and pg_get_wal_summarizer_state().
</para>
</listitem>

<!--
Author: Robert Haas <[email protected]>
2024-03-13 [2041bc427] Add the system identifier to backup manifests.
-->

<listitem>
<para>
Add the system identifier to file system backup manifest files (Amul Sul)
</para>

<para>
This helps detect invalid WAL usage.
</para>
</listitem>

<!--
Author: Amit Kapila <[email protected]>
2024-03-21 [a145f424d] Allow dbname to be written as part of connstring via pg_
-->

<listitem>
<para>
Allow connection string value dbname to be written when pg_basebackup writes connection information to postgresql.auto.conf (Vignesh C, Hayato Kuroda)
</para>
</listitem>

<!--
Author: Amit Kapila <[email protected]>
2024-01-04 [007693f2a] Track conflict_reason in pg_replication_slots.
Author: Amit Kapila <[email protected]>
2024-03-22 [6ae701b43] Track invalidation_reason in pg_replication_slots.
-->

<listitem>
<para>
Add column pg_replication_slots.invalidation_reason to report the reason for invalid slots (Shveta Malik, Bharath Rupireddy)
</para>
</listitem>

<!--
Author: Amit Kapila <[email protected]>
2024-03-25 [a11f330b5] Track last_inactive_time in pg_replication_slots.
Author: Amit Kapila <[email protected]>
2024-03-27 [6d49c8d4b] Change last_inactive_time to inactive_since in pg_replic
Author: Amit Kapila <[email protected]>
2024-04-05 [6f132ed69] Allow synced slots to have their inactive_since.
-->

<listitem>
<para>
Add pg_replication_slots.inactive_since to report slot inactivity duration (Bharath Rupireddy)
</para>
</listitem>

<!--
Author: Amit Kapila <[email protected]>
2024-02-14 [ddd5f4f54] Add a slot synchronization function.
Author: Amit Kapila <[email protected]>
2024-02-16 [7a424ece4] Add more LOG and DEBUG messages for slot synchronization
-->

<listitem>
<para>
Add function pg_sync_replication_slots() to synchronize logical replication slots (Hou Zhijie, Shveta Malik, Ajin Cherian, Peter Eisentraut)
</para>
</listitem>

<!--
Author: Amit Kapila <[email protected]>
2024-01-29 [732924043] Allow setting failover property in the replication comma
-->

<listitem>
<para>
Add the failover property to the replication protocol (Hou Zhijie, Shveta Malik)
</para>
</listitem>

     </itemizedlist>

    </sect4>

    <sect4 id="release-17-logical">
     <title><link linkend="logical-replication">Logical Replication</link></title>

    <itemizedlist>

<!--
Author: Peter Eisentraut <[email protected]>
2024-03-25 [d44032d01] pg_createsubscriber: creates a new logical replica from
-->

<listitem>
<para>
Add application pg_createsubscriber to create a logical replica from a physical standby server (Euler Taveira)
</para>
</listitem>

<!--
Author: Amit Kapila <[email protected]>
2023-10-26 [29d0a77fa] Migrate logical slots to the new node during an upgrade.
Author: Amit Kapila <[email protected]>
2024-01-02 [9a17be1e2] Allow upgrades to preserve the full subscription's state
-->

<listitem>
<para>
Have pg_upgrade migrate valid logical slots and subscriptions (Hayato Kuroda, Hou Zhijie, Vignesh C, Julien Rouhaud, Shlok Kyal)
</para>

<para>
This allows logical replication to continue quickly after the upgrade.  This only works for old clusters of PostgreSQL version 17.0 or later.
</para>
</listitem>

<!--
Author: Amit Kapila <[email protected]>
2024-01-25 [c393308b6] Allow to enable failover property for replication slots
-->

<listitem>
<para>
Enable the failover of logical slots (Hou Zhijie, Shveta Malik, Ajin Cherian)
</para>

<para>
This is controlled by an optional fifth argument to pg_create_logical_replication_slot().
</para>
</listitem>

<!--
Author: Amit Kapila <[email protected]>
2024-02-22 [93db6cbda] Add a new slot sync worker to synchronize logical slots
Author: Amit Kapila <[email protected]>
2024-03-06 [60c07820d] Doc: Improve replication slot synchronization section.
-->

<listitem>
<para>
Add server variable sync_replication_slots to enable failover logical slot synchronization (Shveta Malik, Hou Zhijie, Peter Smith)
</para>
</listitem>

<!--
Author: Amit Kapila <[email protected]>
2024-01-30 [776621a5e] Add a failover option to subscriptions.
Author: Amit Kapila <[email protected]>
2024-02-07 [22f7e61a6] Clean-ups for 776621a5e4 and 7329240437.
-->

<listitem>
<para>
Add logical replication failover control to CREATE/ALTER SUBSCRIPTION (Shveta Malik, Hou Zhijie, Ajin Cherian)
</para>
</listitem>

<!--
Author: Amit Kapila <[email protected]>
2023-07-14 [edca34243] Allow the use of a hash index on the subscriber during r
-->

<listitem>
<para>
Allow the application of logical replication changes to use hash indexes on the subscriber (Hayato Kuroda)
</para>

<para>
Previously only btree indexes could be used for this purpose.
</para>
</listitem>

<!--
Author: Masahiko Sawada <[email protected]>
2024-04-03 [5bec1d6bc] Improve eviction algorithm in ReorderBuffer using max-he
-->

<listitem>
<para>
Improve logical decoding performance in cases where there are many subtransactions (Masahiko Sawada)
</para>
</listitem>

<!--
Author: Amit Kapila <[email protected]>
2023-10-17 [79243de13] Restart the apply worker if the privileges have been rev
-->

<listitem>
<para>
Restart apply workers if subscription owner's superuser privileges are revoked (Vignesh C)
</para>

<para>
This forces reauthentication.
</para>
</listitem>

<!--
Author: Michael Paquier <[email protected]>
2023-10-18 [173b56f1e] Add flush option to pg_logical_emit_message()
-->

<listitem>
<para>
Add "flush" option to pg_logical_emit_message() (Michael Paquier)
</para>

<para>
This makes the message durable.
</para>
</listitem>

<!--
Author: Amit Kapila <[email protected]>
2024-03-08 [bf279ddd1] Introduce a new GUC 'standby_slot_names'.
-->

<listitem>
<para>
Allow specification of physical standbys that must be synchronized before they are visible to subscribers (Hou Zhijie, Shveta Malik)
</para>

<para>
The server variable is standby_slot_names.
</para>
</listitem>

<!--
Author: Nathan Bossart <[email protected]>
2023-09-25 [13aeaf079] Add worker type to pg_stat_subscription.
-->

<listitem>
<para>
Add worker type column to pg_stat_subscription (Peter Smith)
</para>
</listitem>

    </itemizedlist>

    </sect4>

   </sect3>

   <sect3 id="release-17-utility">
    <title>Utility Commands</title>

    <itemizedlist>

<!--
Author: Alexander Korotkov <[email protected]>
2024-01-16 [9e2d87011] Add new COPY option SAVE_ERROR_TO
Author: Alexander Korotkov <[email protected]>
2024-01-19 [b725b7eec] Rename COPY option from SAVE_ERROR_TO to ON_ERROR
Author: Alexander Korotkov <[email protected]>
2024-02-03 [40bbc8cf0] Improve documentation for COPY ... ON_ERROR ...
Author: Masahiko Sawada <[email protected]>
2024-04-17 [a6d0fa5ef] Disallow specifying ON_ERROR option without value.
-->

<listitem>
<para>
Add new COPY option "ON_ERROR ignore" to discard error rows (Damir Belyalov, Atsushi Torikoshi, Alex Shulgin, Jian He, Yugo Nagata)
</para>

<para>
The default behavior is "ON_ERROR stop".
</para>
</listitem>

<!--
Author: Masahiko Sawada <[email protected]>
2024-04-01 [f5a227895] Add new COPY option LOG_VERBOSITY.
-->

<listitem>
<para>
Add new COPY option LOG_VERBOSITY which reports COPY FROM ignored error rows (Bharath Rupireddy)
</para>
</listitem>

<!--
Author: Masahiko Sawada <[email protected]>
2024-01-25 [729439607] Add progress reporting of skipped tuples during COPY FRO
-->

<listitem>
<para>
Allow COPY FROM to report the number of skipped rows during processing (Atsushi Torikoshi)
</para>

<para>
This appears in system view column pg_stat_progress_copy.tuples_skipped.
</para>
</listitem>

<!--
Author: Andrew Dunstan <[email protected]>
2023-09-30 [f6d4c9cf1] Provide FORCE_NULL * and FORCE_NOT_NULL * options for CO
-->

<listitem>
<para>
In COPY FROM, allow easy specification that all columns should be forced null or not null (Zhang Mingli)
</para>
</listitem>

<!--
Author: Alvaro Herrera <[email protected]>
2024-01-29 [5de890e36] Add EXPLAIN (MEMORY) to report planner memory consumptio
-->

<listitem>
<para>
Allow EXPLAIN to report optimizer memory usage (Ashutosh Bapat)
</para>

<para>
The option is called "MEMORY".
</para>
</listitem>

<!--
Author: Tom Lane <[email protected]>
2024-04-03 [06286709e] Invent SERIALIZE option for EXPLAIN.
-->

<listitem>
<para>
Add EXPLAIN option SERIALIZE to report the cost of converting data for network transmission (Stepan Rutz, Matthias van de Meent)
</para>
</listitem>

<!--
Author: Michael Paquier <[email protected]>
2023-10-19 [295c36c0c] Add local_blk_{read|write}_time I/O timing statistics fo
-->

<listitem>
<para>
Add local I/O block read/write timing statistics to EXPLAIN (Nazir Bilal Yavuz)
</para>
</listitem>

<!--
Author: Tom Lane <[email protected]>
2024-03-19 [fd0398fcb] Improve EXPLAIN's display of SubPlan nodes and output pa
-->

<listitem>
<para>
Improve EXPLAIN's display of SubPlan nodes and output parameters (Tom Lane, Dean Rasheed)
</para>
</listitem>

<!--
Author: Daniel Gustafsson <[email protected]>
2023-09-08 [5a3423ad8] Add JIT deform_counter
-->

<listitem>
<para>
Add JIT deform_counter details to EXPLAIN (Dmitry Dolgov)
</para>
</listitem>

<!--
Author: Alexander Korotkov <[email protected]>
2024-04-07 [1adf16b8f] Implement ALTER TABLE ... MERGE PARTITIONS ... command
-->

<listitem>
<para>
Allow partitions to be merged using ALTER TABLE ... MERGE PARTITIONS (Dmitry Koval)
</para>
</listitem>

<!--
Author: Alexander Korotkov <[email protected]>
2024-04-07 [87c21bb94] Implement ALTER TABLE ... SPLIT PARTITION ... command
-->

<listitem>
<para>
Allow partitions to be split using ALTER TABLE ... SPLIT PARTITION (Dmitry Koval)
</para>
</listitem>

<!--
Author: Peter Eisentraut <[email protected]>
2024-01-16 [699586315] Support identity columns in partitioned tables
-->

<listitem>
<para>
Allow partitioned tables to have identity columns (Ashutosh Bapat)
</para>
</listitem>

<!--
Author: Peter Eisentraut <[email protected]>
2023-07-12 [8c852ba9a] Allow some exclusion constraints on partitions
-->

<listitem>
<para>
Allow exclusion constraints on partitioned tables (Paul A. Jungwirth)
</para>

<para>
As long as exclusion constraints compare partition key columns for equality, other columns can use exclusion constraint-specific comparisons.
</para>
</listitem>

<!--
Author: Alvaro Herrera <[email protected]>
2024-03-25 [374c7a229] Allow specifying an access method for partitioned tables
Author: Alvaro Herrera <[email protected]>
2024-03-28 [e2395cdbe] ALTER TABLE: rework determination of access method ID
-->

<listitem>
<para>
Allow specification of partitioned table access methods (Justin Pryzby, Soumyadeep Chakraborty, Michael Paquier)
</para>
</listitem>

<!--
Author: Peter Eisentraut <[email protected]>
2024-01-13 [4f622503d] Make attstattarget nullable
-->

<listitem>
<para>
Add clearer ALTER TABLE method to set a column to the default statistics target (Peter Eisentraut)
</para>

<para>
The command is ALTER TABLE ... SET STATISTICS DEFAULT;  using "SET STATISTICS -1" is still supported.
</para>
</listitem>

<!--
Author: Peter Eisentraut <[email protected]>
2024-01-04 [5d06e99a3] ALTER TABLE command to change generation expression
-->

<listitem>
<para>
Allow ALTER TABLE to change a columns generation expression (Amul Sul)
</para>

<para>
The syntax is "ALTER TABLE ... ALTER COLUMN ... SET EXPRESSION".
</para>
</listitem>

<!--
Author: Michael Paquier <[email protected]>
2024-03-08 [d61a6cad6] Add support for DEFAULT in ALTER TABLE .. SET ACCESS MET
-->

<listitem>
<para>
Add DEFAULT setting for ALTER TABLE .. SET ACCESS METHOD (Michael Paquier)
</para>
</listitem>

<!--
Author: Alexander Korotkov <[email protected]>
2023-10-16 [e83d1b0c4] Add support event triggers on authenticated login
-->

<listitem>
<para>
Add support for event triggers that fire at connection time (Konstantin Knizhnik, Mikhail Gribkov)
</para>
</listitem>

<!--
Author: Michael Paquier <[email protected]>
2023-12-04 [f21848de2] Add support for REINDEX in event triggers
-->

<listitem>
<para>
Add event trigger support for REINDEX (Garrett Thornburg, Jian He)
</para>
</listitem>

<!--
Author: Nathan Bossart <[email protected]>
2023-07-19 [cdaedfc96] Support parenthesized syntax for CLUSTER without a table
-->

<listitem>
<para>
Allow parenthesized syntax for CLUSTER options if a table name is not specified (Nathan Bossart)
</para>
</listitem>

    </itemizedlist>

   </sect3>

   <sect3 id="release-17-datatypes">
    <title>Data Types</title>

    <itemizedlist>

<!--
Author: Dean Rasheed <[email protected]>
2023-11-14 [519fc1bd9] Support +/- infinity in the interval data type.
-->

<listitem>
<para>
Allow the interval data type to support +/-infinity values (Joseph Koshakow, Jian He, Ashutosh Bapat)
</para>
</listitem>

<!--
Author: Tom Lane <[email protected]>
2024-03-24 [af1d39584] Allow more cases to pass the unsafe-use-of-new-enum-valu
-->

<listitem>
<para>
Allow the use of an ENUM added via ALTER TYPE if the type was created in the same transaction (Tom Lane)
</para>

<para>
This was previously disallowed.
</para>
</listitem>

    </itemizedlist>

   </sect3>

   <sect3 id="release-17-merge">
    <title><link linkend="sql-merge">MERGE</link></title>


    <itemizedlist>

<!--
Author: Dean Rasheed <[email protected]>
2024-02-29 [5f2e179bd] Support MERGE into updatable views.
-->

<listitem>
<para>
Allow MERGE to modify updatable views (Dean Rasheed)
</para>
</listitem>

<!--
Author: Dean Rasheed <[email protected]>
2024-03-30 [0294df2f1] Add support for MERGE ... WHEN NOT MATCHED BY SOURCE.
-->

<listitem>
<para>
Add WHEN NOT MATCHED BY SOURCE to MERGE (Dean Rasheed)
</para>

<para>
"WHEN NOT MATCHED" on target rows was already supported.
</para>
</listitem>

<!--
Author: Dean Rasheed <[email protected]>
2024-03-17 [c649fa24a] Add RETURNING support to MERGE.
-->

<listitem>
<para>
Allow MERGE to use the RETURNING clause (Dean Rasheed)
</para>

<para>
The new RETURNING function merge_action() reports on the DML that generated the row.
</para>
</listitem>

    </itemizedlist>

   </sect3>

   <sect3 id="release-17-functions">
    <title>Functions</title>

    <itemizedlist>

<!--
Author: Amit Langote <[email protected]>
2024-04-04 [de3600452] Add basic JSON_TABLE() functionality
Author: Amit Langote <[email protected]>
2024-04-08 [bb766cde6] JSON_TABLE: Add support for NESTED paths and columns
-->

<listitem>
<para>
Add function JSON_TABLE() to convert JSON data to a table representation (Nikita Glukhov, Teodor Sigaev, Oleg Bartunov, Alexander Korotkov, Andrew Dunstan, Amit Langote, Jian He)
</para>

<para>
This function can be used in the FROM clause of SELECT queries as a tuple source.
</para>
</listitem>

<!--
Author: Amit Langote <[email protected]>
2023-07-26 [03734a7fe] Add more SQL/JSON constructor functions
-->

<listitem>
<para>
Add SQL/JSON constructor functions JSON(), JSON_SCALAR(), and JSON_SERIALIZE() (Amit Langote)
</para>
</listitem>

<!--
Author: Amit Langote <[email protected]>
2024-01-24 [aaaf9449e] Add soft error handling to some expression nodes
Author: Amit Langote <[email protected]>
2024-01-24 [1edb3b491] Adjust populate_record_field() to handle errors softly
Author: Amit Langote <[email protected]>
2024-03-21 [6185c9737] Add SQL/JSON query functions
Author: Amit Langote <[email protected]>
2024-04-18 [c0fc07518] SQL/JSON: Fix issues with DEFAULT .. ON ERROR / EMPTY
Author: Amit Langote <[email protected]>
2024-04-18 [ef744ebb7] SQL/JSON: Miscellaneous fixes and improvements
-->

<listitem>
<para>
Add SQL/JSON query functions JSON_EXISTS(), JSON_QUERY(), and JSON_VALUE() (Nikita Glukhov, Teodor Sigaev, Oleg Bartunov, Alexander Korotkov, Andrew Dunstan, Amit Langote,
Peter Eisentraut, Jian He)
</para>
</listitem>

<!--
Author: Andrew Dunstan <[email protected]>
2024-01-25 [66ea94e8e] Implement various jsonpath methods
-->

<listitem>
<para>
Add jsonpath methods to convert JSON values to other JSON data types (Jeevan Chalke)
</para>

<para>
The jsonpath methods are .bigint(), .boolean(), .date(), .decimal([precision [, scale]]), .integer(), .number(), .string(), .time(), .time_tz(), .timestamp(), and .timestamp_tz().
</para>
</listitem>

<!--
Author: Tom Lane <[email protected]>
2024-01-25 [8ba6fdf90] Support TZ and OF format codes in to_timestamp().
-->

<listitem>
<para>
Add to_timestamp() time zone format specifiers (Tom Lane)
</para>

<para>
"TZ" accepts time zone abbreviations or numeric offsets, while "OF" accepts only numeric offsets.
</para>
</listitem>

<!--
Author: Michael Paquier <[email protected]>
2023-10-13 [97957fdba] Add support for AT LOCAL
-->

<listitem>
<para>
Allow the session time zone to be specified by AS LOCAL (Vik Fearing)
</para>

<para>
This is useful when converting adding and removing time zones from time stamps values, rather than specifying the literal session time zone.
</para>
</listitem>

<!--
Author: Peter Eisentraut <[email protected]>
2024-03-19 [794f10f6b] Add some UUID support functions
-->

<listitem>
<para>
Add functions uuid_extract_timestamp() and uuid_extract_version() to return UUID information (Andrey Borodin)
</para>
</listitem>

<!--
Author: Dean Rasheed <[email protected]>
2024-03-27 [e6341323a] Add functions to generate random numbers in a specified
-->

<listitem>
<para>
Add functions to generate random numbers in a specified range (Dean Rasheed)
</para>

<para>
The functions are random(min, max) and they take values of type integer, bigint, and numeric.
</para>
</listitem>

<!--
Author: Nathan Bossart <[email protected]>
2023-08-23 [260a1f18d] Add to_bin() and to_oct().
-->

<listitem>
<para>
Add functions to convert integers to hex and binary strings (Eric Radman, Nathan Bossart)
</para>

<para>
The functions are to_bin() and to_oct().
</para>
</listitem>

<!--
Author: Jeff Davis <[email protected]>
2023-11-01 [a02b37fc0] Additional unicode primitive functions.
-->

<listitem>
<para>
Add Unicode informational functions (Jeff Davis)
</para>

<para>
Function unicode_version() returns the Unicode version, icu_unicode_version() returns the ICU version, and unicode_assigned() returns if the characters are assigned Unicode codepoints.
</para>
</listitem>

<!--
Author: Daniel Gustafsson <[email protected]>
2023-11-06 [526fe0d79] Add XMLText function (SQL/XML X038)
-->

<listitem>
<para>
Add function xmltext() to convert text to a single XML text node (Jim Jones)
</para>
</listitem>

<!--
Author: Tom Lane <[email protected]>
2024-03-20 [1218ca995] Add to_regtypemod function to extract typemod from a str
-->

<listitem>
<para>
Add function to_regtypemod() to return the type modifier of a type specification (David Wheeler, Erik Wienhold)
</para>
</listitem>

<!--
Author: Tom Lane <[email protected]>
2024-03-30 [b154d8a6d] Add pg_basetype() function to extract a domain's base ty
-->

<listitem>
<para>
Add pg_basetype() function to return a domain's base type (Steve Chavez)
</para>
</listitem>

<!--
Author: Nathan Bossart <[email protected]>
2024-03-14 [d1162cfda] Add pg_column_toast_chunk_id().
-->

<listitem>
<para>
Add function pg_column_toast_chunk_id() to return a value's TOAST identifier (Yugo Nagata)
</para>

<para>
This returns NULL if the value is not stored in TOAST.
</para>
</listitem>

    </itemizedlist>

   </sect3>

   <sect3 id="release-17-plpgsql">
    <title><link linkend="plpgsql">PL/pgSQL</link></title>

    <itemizedlist>

<!--
Author: Tom Lane <[email protected]>
2024-01-04 [5e8674dc8] In plpgsql, allow %TYPE and %ROWTYPE to be followed by a
-->

<listitem>
<para>
Allow plpgsql %TYPE and %ROWTYPE specifications to represent arrays of non-array types (Quan Zongliang, Pavel Stehule)
</para>
</listitem>

<!--
Author: Tom Lane <[email protected]>
2024-01-05 [43b46aae1] Clean up some edge cases in plpgsql's %TYPE parsing.
-->

<listitem>
<para>
Allow plpgsql %TYPE specification to reference composite column (Tom Lane)
</para>
</listitem>

    </itemizedlist>

   </sect3>

   <sect3 id="release-17-libpq">
    <title><link linkend="libpq">libpq</link></title>

    <itemizedlist>

<!--
Author: Joe Conway <[email protected]>
2024-01-09 [a7be2a6c2] Add new function, PQchangePassword(), to libpq
-->

<listitem>
<para>
Add libpq function to change role passwords (Joe Conway)
</para>

<para>
The new function, PQchangePassword(), hashes the new password before sending it to the server.
</para>
</listitem>

<!--
Author: Michael Paquier <[email protected]>
2023-07-04 [28b572656] libpq: Add support for Close on portals and statements
-->

<listitem>
<para>
Add libpq functions to close portals and prepared statements (Jelte Fennema-Nio)
</para>

<para>
The functions are PQclosePrepared(), PQclosePortal(), PQsendClosePrepared(), and PQsendClosePortal().
</para>
</listitem>

<!--
Author: Alvaro Herrera <[email protected]>
2024-03-12 [61461a300] libpq: Add encrypted and non-blocking query cancellation
-->

<listitem>
<para>
Add libpq API which allows for blocking and non-blocking cancel requests, with encryption if already in use (Jelte Fennema-Nio)
</para>

<para>
Previously only blocking, unencrypted cancel requests were supported.
</para>
</listitem>

<!--
Author: Robert Haas <[email protected]>
2024-04-02 [f5e4dedfa] Expose PQsocketPoll via libpq
-->

<listitem>
<para>
Add libpq function PQsocketPoll to allow polling of network sockets (Tristan Partin)
</para>
</listitem>

<!--
Author: Michael Paquier <[email protected]>
2024-01-16 [4794c2d31] libpq: Add PQsendPipelineSync()
-->

<listitem>
<para>
Add libpq function PQsendPipelineSync() to send a pipeline synchronization point (Anton Kirilov)
</para>

<para>
This is similar to PQpipelineSync() but it does not flush to the server unless the size threshold of the output buffer is reached.
</para>
</listitem>

<!--
Author: Tom Lane <[email protected]>
2024-04-06 [4643a2b26] Support retrieval of results in chunks with libpq.
-->

<listitem>
<para>
Add libpq function PQsetChunkedRowsMode to allow retrieval of results in chunks (Daniel Vérité)
</para>
</listitem>

<!--
Author: Heikki Linnakangas <[email protected]>
2024-04-08 [d39a49c1e] Support TLS handshake directly without SSLRequest negoti
Author: Heikki Linnakangas <[email protected]>
2024-04-08 [91044ae4b] Send ALPN in TLS handshake, require it in direct SSL con
Author: Daniel Gustafsson <[email protected]>
2024-04-24 [44e27f0a6] Support disallowing SSL renegotiation when using LibreSS
Author: Daniel Gustafsson <[email protected]>
2024-04-24 [d80f2ce29] Support SSL_R_VERSION_TOO_LOW when using LibreSSL
Author: Heikki Linnakangas <[email protected]>
2024-04-29 [03a0e0d4b] libpq: Enforce ALPN in direct SSL connections
Author: Heikki Linnakangas <[email protected]>
2024-04-29 [17a834a04] Reject SSL connection if ALPN is used but there's no com
Author: Heikki Linnakangas <[email protected]>
2024-05-11 [407e0b023] Change ALPN protocol ID to IANA-approved "postgresql"
Author: Heikki Linnakangas <[email protected]>
2024-05-16 [fb5718f35] Remove option to fall back from direct to postgres SSL n
-->

<listitem>
<para>
Allow TLS connections without requiring a network round-trip negotiation (Greg Stark, Heikki Linnakangas, Peter Eisentraut, Michael Paquier, Daniel Gustafsson)
</para>

<para>
This is enabled with the client-side option sslnegotation=direct, requires ALPN, and only works on PostgreSQL 17 and later servers.
</para>
</listitem>

    </itemizedlist>

   </sect3>

   <sect3 id="release-17-psql">
     <title><xref linkend="app-psql"/></title>

     <itemizedlist>

<!--
Author: Tom Lane <[email protected]>
2023-11-13 [d1379ebf4] Improve default and empty privilege outputs in psql.
-->

<listitem>
<para>
Improve psql display of default and empty privileges (Erik Wienhold, Laurenz Albe)
</para>

<para>
Command \dp now displays "(none)" for empty privileges;  default still display as empty.
</para>
</listitem>

<!--
Author: Tom Lane <[email protected]>
2023-11-13 [d1379ebf4] Improve default and empty privilege outputs in psql.
-->

<listitem>
<para>
Have backslash commands honor "\pset null" (Erik Wienhold, Laurenz Albe)
</para>

<para>
Previously "\pset null" was ignored.
</para>
</listitem>

<!--
Author: Daniel Gustafsson <[email protected]>
2023-08-29 [f347ec76e] Allow \watch queries to stop on minimum rows returned
-->

<listitem>
<para>
Allow psql's \watch to stop after a minimum number of rows returned (Greg Sabino Mullane)
</para>

<para>
The parameter is "min_rows".
</para>
</listitem>

<!--
Author: Robert Haas <[email protected]>
2024-04-02 [cafe10565] Allow SIGINT to cancel psql database reconnections.
-->

<listitem>
<para>
Allow psql connections to be canceled with control-C (Tristan Partin)
</para>
</listitem>

<!--
Author: Tom Lane <[email protected]>
2024-04-06 [90f517821] Re-implement psql's FETCH_COUNT feature atop libpq's chu
-->

<listitem>
<para>
Allow psql to honor FETCH_COUNT for non-SELECT queries (Daniel Vérité)
</para>
</listitem>

<!--
Author: Michael Paquier <[email protected]>
2023-06-30 [c951e9042] Add tab completion for CREATE SCHEMA in psql
Author: Michael Paquier <[email protected]>
2023-10-13 [d16eb83ab] psql: Add completion support for AT [ LOCAL | TIME ZONE
Author: Dean Rasheed <[email protected]>
2023-11-28 [cd3424748] psql: Add tab completion for view options.
Author: Michael Paquier <[email protected]>
2023-11-16 [816f10564] psql: Add some completion support for CREATE TABLE .. AS
Author: Alexander Korotkov <[email protected]>
2024-03-16 [927332b95] psql: fix variable existence tab completion
Author: Masahiko Sawada <[email protected]>
2024-03-28 [f1bb9284f] Improve tab completion for ALTER TABLE ALTER COLUMN SET
Author: Masahiko Sawada <[email protected]>
2024-04-08 [304b6b1a6] Add more tab completion support for ALTER DEFAULT PRIVIL
Author: Alexander Korotkov <[email protected]>
2024-04-30 [60ae37a8b] Add tab completion for partition MERGE/SPLIT operations
-->

<listitem>
<para>
Improve psql tab completion (Dagfinn Ilmari Mannsåker, Gilles Darold, Christoph Heiss, Steve Chavez, Vignesh C, Pavel Borisov)
</para>
</listitem>

     </itemizedlist>

   </sect3>

   <sect3 id="release-17-server-apps">
    <title>Server Applications</title>

    <itemizedlist>

<!--
Author: Robert Haas <[email protected]>
2024-01-11 [ee1bfd168] Add new pg_walsummary tool.
-->

<listitem>
<para>
Add application pg_walsummary to dump WAL summary files (Robert Haas)
</para>
</listitem>

<!--
Author: Tom Lane <[email protected]>
2024-04-01 [a45c78e32] Rearrange pg_dump's handling of large objects for better
-->

<listitem>
<para>
Allow pg_dump's large objects to be restorable in batches (Tom Lane)
</para>

<para>
This allows the restoration of many large objects to avoid transaction limits and to be restored in parallel.
</para>
</listitem>

<!--
Author: Dean Rasheed <[email protected]>
2024-03-20 [522ed12f7] Add "- -exclude-extension" to pg_dump's options.
-->

<listitem>
<para>
Add pg_dump option --exclude-extension (Ayush Vatsa)
</para>
</listitem>

<!--
Author: Daniel Gustafsson <[email protected]>
2023-11-29 [a5cf808be] Read include/exclude commands for dump/restore from file
-->

<listitem>
<para>
Allow pg_dump, pg_dumpall, and pg_restore to specify include/exclude objects in a file (Pavel Stehule, Daniel Gustafsson)
</para>

<para>
The option is called "--filter".
</para>
</listitem>

<!--
Author: Nathan Bossart <[email protected]>
2023-09-06 [8c16ad3b4] Allow using syncfs() in frontend utilities.
-->

<listitem>
<para>
Add the --sync-method parameter to several client applications (Justin Pryzby, Nathan Bossart)
</para>

<para>
The applications are initdb, pg_basebackup, pg_checksums, pg_dump, pg_rewind, and pg_upgrade.
</para>
</listitem>

<!--
Author: Tom Lane <[email protected]>
2024-04-01 [959b38d77] Invent - -transaction-size option for pg_restore.
-->

<listitem>
<para>
Add pg_restore option --transaction-size to allow object restore in transaction batches (Tom Lane)
</para>

<para>
This allows the performance benefits of transaction batches without the problems of excessively large transaction blocks.
</para>
</listitem>

<!--
Author: Nathan Bossart <[email protected]>
2024-03-25 [3ff01b2b6] Adjust pgbench option for debug mode.
-->

<listitem>
<para>
Change pgbench debug mode option from -d to --debug (Greg Sabino Mullane)
</para>

<para>
Option -d is now used for the database name, and the new --dbname option can be used as well.
</para>
</listitem>

<!--
Author: Tatsuo Ishii <[email protected]>
2023-08-30 [3c662643c] Allow pgbench to exit immediately when any client is abo
-->

<listitem>
<para>
Add pgbench option "--exit-on-abort" to exit after any client aborts (Yugo Nagata)
</para>
</listitem>

<!--
Author: Michael Paquier <[email protected]>
2024-01-24 [94edfe250] pgbench: Add \syncpipeline
-->

<listitem>
<para>
Add pgbench command \syncpipeline to allow sending of sync messages (Anthonin Bonnefoy)
</para>
</listitem>

<!--
Author: Michael Paquier <[email protected]>
2023-07-19 [3f8c98d0b] pg_archivecleanup: Add - -clean-backup-history
-->

<listitem>
<para>
Allow pg_archivecleanup to remove backup history files (Atsushi Torikoshi)
</para>

<para>
The option is --clean-backup-history.
</para>
</listitem>

<!--
Author: Michael Paquier <[email protected]>
2023-06-30 [dd7c60f19] Introduce long options in pg_archivecleanup
-->

<listitem>
<para>
Add some long options to pg_archivecleanup (Atsushi Torikoshi)
</para>

<para>
The long options are --debug, --dry-run, and --strip-extension.
</para>
</listitem>

<!--
Author: Daniel Gustafsson <[email protected]>
2023-09-21 [cca97ce6a] Allow dbname in pg_basebackup/pg_receivewal connstring
-->

<listitem>
<para>
Allow pg_basebackup and pg_receivewal to use dbname in their connection specification (Jelte Fennema-Nio)
</para>

<para>
This is useful for connection poolers that are sensitive to the database name.
</para>
</listitem>

<!--
Author: Thomas Munro <[email protected]>
2024-03-06 [d93627bcb] Add - -copy-file-range option to pg_upgrade.
-->

<listitem>
<para>
Add pg_upgrade option --copy-file-range (Thomas Munro)
</para>

<para>
This is supported on Linux and FreeBSD.
</para>
</listitem>

<!--
Author: Alexander Korotkov <[email protected]>
2024-03-25 [47f99a407] reindexdb: Add the index-level REINDEX with multiple job
-->

<listitem>
<para>
Allow reindexdb --index to process indexes from different tables in parallel (Maxim Orlov, Svetlana Derevyanko, Alexander Korotkov)
</para>
</listitem>

<!--
Author: Nathan Bossart <[email protected]>
2024-03-11 [24c928ad9] reindexdb: Allow specifying objects to process in all da
-->

<listitem>
<para>
Allow reindexdb to process objects in all databases matching a pattern (Nathan Bossart)
</para>

<para>
Specifically, --all can now be used with --table, --schema, --index, and --system.
</para>
</listitem>

<!--
Author: Nathan Bossart <[email protected]>
2024-03-11 [648928c79] vacuumdb: Allow specifying objects to process in all dat
-->

<listitem>
<para>
Allow vacuumdb to process objects in all databases matching a pattern (Nathan Bossart)
</para>

<para>
Specifically, --all can now be used with --table, --schema, and --exclude-schema.
</para>
</listitem>

<!--
Author: Nathan Bossart <[email protected]>
2024-03-11 [1b49d56d3] clusterdb: Allow specifying tables to process in all dat
-->

<listitem>
<para>
Allow clusterdb to process objects in all databases matching a pattern (Nathan Bossart)
</para>

<para>
Specifically, --all can now be used with --table.
</para>
</listitem>

    </itemizedlist>

   </sect3>

   <sect3 id="release-17-source-code">
    <title>Source Code</title>

    <itemizedlist>

<!--
Author: Michael Paquier <[email protected]>
2023-07-03 [8e278b657] Remove support for OpenSSL 1.0.1
-->

<listitem>
<para>
Remove support for OpenSSL 1.0.1 (Michael Paquier)
</para>
</listitem>

<!--
Author: Peter Eisentraut <[email protected]>
2023-11-17 [284cbaea7] Allow tests to pass in OpenSSL FIPS mode (TAP tests)
Author: Peter Eisentraut <[email protected]>
2023-11-17 [3c44e7d8d] Allow tests to pass in OpenSSL FIPS mode (rest)
-->

<listitem>
<para>
Allow tests to pass in OpenSSL FIPS mode (Peter Eisentraut)
</para>
</listitem>

<!--
Author: Nathan Bossart <[email protected]>
2024-04-06 [792752af4] Optimize pg_popcount() with AVX-512 instructions.
Author: Nathan Bossart <[email protected]>
2024-04-06 [41c51f0c6] Optimize visibilitymap_count() with AVX-512 instructions
-->

<listitem>
<para>
Use CPU AVX-512 instructions for bit counting (Paul Amonson, Nathan Bossart, Ants Aasma)
</para>
</listitem>

<!--
Author: Thomas Munro <[email protected]>
2024-01-25 [820b5af73] jit: Require at least LLVM 10.
-->

<listitem>
<para>
Require LLVM version 10 or later (Thomas Munro)
</para>
</listitem>

<!--
Author: John Naylor <[email protected]>
2023-08-10 [4d14ccd6a] Use native CRC instructions on 64-bit LoongArch
-->

<listitem>
<para>
Use native CRC instructions on 64-bit LoongArch CPUs (YANG Xudong)
</para>
</listitem>

<!--
Author: Heikki Linnakangas <[email protected]>
2024-02-28 [0b16bb877] Remove AIX support
-->

<listitem>
<para>
Remove AIX support (Heikki Linnakangas)
</para>
</listitem>

<!--
Author: Michael Paquier <[email protected]>
2023-12-20 [1301c80b2] Remove MSVC scripts
-->

<listitem>
<para>
Remove the Microsoft Visual Studio-specific Postgres build option (Michael Paquier)
</para>

<para>
Meson is now the only available method for Visual Studio builds.
</para>
</listitem>

<!--
Author: Thomas Munro <[email protected]>
2023-07-12 [68a4b58ec] Remove - -disable-thread-safety and related code.
Author: Thomas Munro <[email protected]>
2023-07-12 [ce0b0fa3e] Doc: Adjust libpq docs about thread safety.
-->

<listitem>
<para>
Remove configure option --disable-thread-safety (Thomas Munro, Heikki Linnakangas)
</para>

<para>
We now assume all supported platforms have sufficient thread support.
</para>
</listitem>

<!--
Author: Heikki Linnakangas <[email protected]>
2024-02-28 [1c1eec0f2] Remove configure - -with-CC option
-->

<listitem>
<para>
Remove configure option --with-CC (Heikki Linnakangas)
</para>

<para>
Setting the CC environment variable is now the only supported method for specifying the compiler.
</para>
</listitem>

<!--
Author: David Rowley <[email protected]>
2023-10-26 [f0efa5aec] Introduce the concept of read-only StringInfos
-->

<listitem>
<para>
User-defined data type receive functions will no longer receive their data null-terminated (David Rowley)
</para>
</listitem>

<!--
Author: Andrew Dunstan <[email protected]>
2024-04-04 [3311ea86e] Introduce a non-recursive JSON parser
-->

<listitem>
<para>
Add incremental JSON parser for use with huge JSON documents (Andrew Dunstan)
</para>
</listitem>

<!--
Author: Nathan Bossart <[email protected]>
2024-02-28 [363eb0599] Convert README to Markdown.
-->

<listitem>
<para>
Convert source code README to Markdown (Nathan Bossart)
</para>
</listitem>

<!--
Author: Tom Lane <[email protected]>
2023-12-22 [e2b73f4a4] Stop generating plain-text INSTALL instructions.
-->

<listitem>
<para>
Remove no longer needed top-level INSTALL file (Tom Lane)
</para>
</listitem>

<!--
Author: Peter Eisentraut <[email protected]>
2023-11-06 [721856ff2] Remove distprep
-->

<listitem>
<para>
Remove make's distprep option (Peter Eisentraut)
</para>
</listitem>

<!--
Author: Peter Eisentraut <[email protected]>
2024-01-23 [79b03dbb3] Support shared libraries on Android (using make)
-->

<listitem>
<para>
Add 'make' support for Android shared libraries (Peter Eisentraut)
</para>
</listitem>

<!--
Author: Michael Paquier <[email protected]>
2024-01-22 [d86d20f0b] Add backend support for injection points
Author: Michael Paquier <[email protected]>
2024-03-04 [37b369dc6] injection_points: Add wait and wakeup of processes
Author: Michael Paquier <[email protected]>
2024-04-08 [f587338de] injection_points: Introduce runtime conditions
-->

<listitem>
<para>
Add backend support for injection points (Michael Paquier)
</para>

<para>
This is used for server debugging and they must be enabled at server compile time.
</para>
</listitem>

<!--
Author: Tom Lane <[email protected]>
2024-01-25 [7014c9a4b] Doc: improve documentation for jsonpath behavior.
-->

<listitem>
<para>
Improve documentation for using jsonpath for predicate checks (David Wheeler)
</para>
</listitem>

    </itemizedlist>

   </sect3>

   <sect3 id="release-17-modules">
    <title>Additional Modules</title>

     <itemizedlist>

<!--
Author: Etsuro Fujita <[email protected]>
2023-08-15 [9e9931d2b] Re-allow FDWs and custom scan providers to replace joins
-->

<listitem>
<para>
Allow joins with non-join qualifications to be pushed down to foreign servers and custom scans (Richard Guo, Etsuro Fujita)
</para>

<para>
Foreign data wrappers and custom scans will need to be modified to handle these cases.
</para>
</listitem>

<!--
Author: Alexander Korotkov <[email protected]>
2023-12-05 [824dbea3e] Add support for deparsing semi-joins to contrib/postgres
-->

<listitem>
<para>
Allow pushdown of EXISTS and IN subqueries to the postgres_fdw foreign server (Alexander Pyhalov)
</para>
</listitem>

<!--
Author: David Rowley <[email protected]>
2023-11-02 [cac169d68] Increase DEFAULT_FDW_TUPLE_COST from 0.01 to 0.2
Author: John Naylor <[email protected]>
2024-01-11 [f7f694b21] Update documentation of default fdw_tuple_cost
-->

<listitem>
<para>
Increase the default foreign data wrapper tuple cost (David Rowley, Umair Shahid)
</para>

<para>
This value is used by the optimizer.
</para>
</listitem>

<!--
Author: Michael Paquier <[email protected]>
2023-10-05 [d61f2538a] postgres_fdw: Replace WAIT_EVENT_EXTENSION with custom w
-->

<listitem>
<para>
Create custom wait events for postgres_fdw (Masahiro Ikeda)
</para>
</listitem>

<!--
Author: Michael Paquier <[email protected]>
2023-10-05 [c789f0f6c] dblink: Replace WAIT_EVENT_EXTENSION with custom wait ev
-->

<listitem>
<para>
Create custom wait events for dblink (Masahiro Ikeda)
</para>
</listitem>

<!--
Author: Noah Misch <[email protected]>
2024-01-08 [d3c5f37dd] Make dblink interruptible, via new libpqsrv APIs.
-->

<listitem>
<para>
Allow dblink database operations to be interrupted (Noah Misch)
</para>
</listitem>

<!--
Author: Tom Lane <[email protected]>
2024-03-21 [485f0aa85] Add hash support functions and hash opclass for contrib/
-->

<listitem>
<para>
Allow the creation of hash indexes on ltree columns (Tommy Pavlicek)
</para>

<para>
This also enables hash join and hash aggregation on ltree columns.
</para>
</listitem>

<!--
Author: Michael Paquier <[email protected]>
2023-09-20 [59f47fb98] unaccent: Add support for quoted translated characters
-->

<listitem>
<para>
Allow unaccent character translation rules to contain whitespace and quotes (Michael Paquier)
</para>

<para>
The syntax for unaccent.rules has changed.
</para>
</listitem>

<!--
Author: Alexander Korotkov <[email protected]>
2023-10-28 [5ae208720] Teach contrib/amcheck to check the unique constraint vio
-->

<listitem>
<para>
Allow amcheck to check for unique constraint violations (Anastasia Lubennikova, Pavel Borisov, Maxim Orlov)
</para>

<para>
The pg_amcheck option --checkunique will check all the unique indexes.
</para>
</listitem>

<!--
Author: Peter Eisentraut <[email protected]>
2023-11-07 [3c551ebed] citext: Allow tests to pass in OpenSSL FIPS mode
-->

<listitem>
<para>
Allow citext tests to pass in OpenSSL FIPS mode (Peter Eisentraut)
</para>
</listitem>

<!--
Author: Peter Eisentraut <[email protected]>
2023-11-17 [795592865] pgcrypto: Allow tests to pass in OpenSSL FIPS mode
-->

<listitem>
<para>
Allow pgcrypto tests to pass in OpenSSL FIPS mode (Peter Eisentraut)
</para>
</listitem>

<!--
Author: Nathan Bossart <[email protected]>
2023-11-27 [75680c3d8] Retire a few backwards compatibility macros.
-->

<listitem>
<para>
Remove some unused SPI macros (Bharath Rupireddy)
</para>
</listitem>

<!--
Author: Daniel Gustafsson <[email protected]>
2024-03-04 [cc09e6549] Remove the adminpack contrib extension
-->

<listitem>
<para>
Remove adminpack contrib extension (Daniel Gustafsson)
</para>

<para>
This was used by now end-of-life pgAdmin III.
</para>
</listitem>

<!--
Author: Tom Lane <[email protected]>
2023-10-20 [2b5154bea] Extend ALTER OPERATOR to allow setting more optimization
-->

<listitem>
<para>
Allow ALTER OPERATOR to set more optimization attributes (Tommy Pavlicek)
</para>

<para>
This is useful for extensions.
</para>
</listitem>

<!--
Author: Michael Paquier <[email protected]>
2023-07-31 [c9af05465] Support custom wait events for wait event type "Extensio
Author: Michael Paquier <[email protected]>
2023-10-04 [c8e318b1b] worker_spi: Rename custom wait event to "WorkerSpiMain"
-->

<listitem>
<para>
Allow extensions to define custom wait events (Masahiro Ikeda)
</para>
</listitem>

<!--
Author: Thomas Munro <[email protected]>
2024-04-08 [13453eedd] Add pg_buffercache_evict() function for testing.
-->

<listitem>
<para>
Add pg_buffercache function pg_buffercache_evict() to allow shared buffer eviction (Palak Chaturvedi, Thomas Munro)
</para>

<para>
This is useful for testing.
</para>
</listitem>

     </itemizedlist>

    <sect4 id="release-17-pgstatstatements">
     <title><link linkend="pgstatstatements"><application>pg_statstatements</application></link></title>

     <itemizedlist>

<!--
Author: Michael Paquier <[email protected]>
2023-09-28 [11c34b342] Show parameters of CALL as constants in pg_stat_statemen
-->

<listitem>
<para>
Replace CALL parameters in pg_stat_statements with placeholders (Sami Imseih)
</para>
</listitem>

<!--
Author: Michael Paquier <[email protected]>
2023-07-27 [31de7e60d] Show savepoint names as constants in pg_stat_statements
-->

<listitem>
<para>
Replace savepoint names stored in pg_stat_statements with placeholders (Greg Sabino Mullane)
</para>

<para>
This greatly reduces the number of entries needed to record SAVEPOINT, RELEASE SAVEPOINT, and ROLLBACK TO SAVEPOINT commands.
</para>
</listitem>

<!--
Author: Michael Paquier <[email protected]>
2023-08-12 [638d42a3c] Show GIDs of two-phase commit commands as constants in p
-->

<listitem>
<para>
Replace two-phase commit GIDs stored in pg_stat_statements with placeholders (Michael Paquier)
</para>

<para>
This greatly reduces the number of entries needed to record PREPARE TRANSACTION, COMMIT PREPARED, and ROLLBACK PREPARED.
</para>
</listitem>

<!--
Author: Michael Paquier <[email protected]>
2023-08-27 [bb45156f3] Show names of DEALLOCATE as constants in pg_stat_stateme
-->

<listitem>
<para>
Track DEALLOCATE in pg_stat_statements (Dagfinn Ilmari Mannsåker, Michael Paquier)
</para>

<para>
DEALLOCATE names are stored in pg_stat_statements as placeholders.
</para>
</listitem>

<!--
Author: Michael Paquier <[email protected]>
2023-10-19 [295c36c0c] Add local_blk_{read|write}_time I/O timing statistics fo
Author: Michael Paquier <[email protected]>
2023-10-19 [5147ab1dd] pg_stat_statements: Add local_blk_{read|write}_time
-->

<listitem>
<para>
Add local I/O block read/write timing statistics columns of pg_stat_statements (Nazir Bilal Yavuz)
</para>

<para>
The new columns are "local_blk_read_time" and "local_blk_write_time".
</para>
</listitem>

<!--
Author: Daniel Gustafsson <[email protected]>
2023-09-08 [5a3423ad8] Add JIT deform_counter
-->

<listitem>
<para>
Add JIT deform_counter details to pg_stat_statements (Dmitry Dolgov)
</para>
</listitem>

<!--
Author: Alexander Korotkov <[email protected]>
2023-11-27 [dc9f8a798] Track statement entry timestamp in contrib/pg_stat_state
-->

<listitem>
<para>
Add optional fourth argument (minmax_only) to pg_stat_statements_reset() to allow for the resetting of only min/max statistics (Andrei Zubkov)
</para>

<para>
This argument defaults to "false".
</para>
</listitem>

<!--
Author: Alexander Korotkov <[email protected]>
2023-11-27 [dc9f8a798] Track statement entry timestamp in contrib/pg_stat_state
-->

<listitem>
<para>
Add pg_stat_statements columns "stats_since" and "minmax_stats_since" to track entry creation time and last min/max reset time (Andrei Zubkov)
</para>
</listitem>

     </itemizedlist>

    </sect4>

   </sect3>

  </sect2>

  <sect2 id="release-17-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>