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
2921
2922
2923
2924
2925
2926
2927
2928
2929
2930
2931
2932
2933
2934
2935
2936
2937
2938
2939
2940
2941
2942
2943
2944
2945
2946
2947
2948
2949
2950
2951
2952
2953
2954
2955
2956
2957
2958
2959
2960
2961
2962
2963
2964
2965
2966
2967
2968
2969
2970
2971
2972
2973
2974
2975
2976
2977
2978
2979
2980
2981
2982
2983
2984
2985
2986
2987
2988
2989
2990
2991
2992
2993
2994
2995
2996
2997
2998
2999
3000
3001
3002
3003
3004
3005
3006
3007
3008
3009
3010
3011
3012
3013
3014
3015
3016
3017
3018
3019
3020
3021
3022
3023
3024
3025
3026
3027
3028
3029
3030
3031
3032
3033
3034
3035
3036
3037
3038
3039
3040
3041
3042
3043
3044
3045
3046
3047
3048
3049
3050
3051
3052
3053
3054
3055
3056
3057
3058
3059
3060
3061
3062
3063
3064
3065
3066
3067
3068
3069
3070
3071
3072
3073
3074
3075
3076
3077
3078
3079
3080
3081
3082
3083
3084
3085
3086
3087
3088
3089
3090
3091
3092
3093
3094
3095
3096
3097
3098
3099
3100
3101
3102
3103
3104
3105
3106
3107
3108
3109
3110
3111
3112
3113
3114
3115
3116
3117
3118
3119
3120
3121
3122
3123
3124
3125
3126
3127
3128
3129
3130
3131
3132
3133
3134
3135
3136
3137
3138
3139
3140
3141
3142
3143
3144
3145
3146
3147
3148
3149
3150
3151
3152
3153
3154
3155
3156
3157
3158
3159
3160
3161
3162
3163
3164
3165
3166
3167
3168
3169
3170
3171
3172
3173
3174
3175
3176
3177
3178
3179
3180
3181
3182
3183
3184
3185
3186
3187
3188
3189
3190
3191
3192
3193
3194
3195
3196
3197
3198
3199
3200
3201
3202
3203
3204
3205
3206
3207
3208
3209
3210
3211
3212
3213
3214
3215
3216
3217
3218
3219
3220
3221
3222
3223
3224
3225
3226
3227
3228
3229
3230
3231
3232
3233
3234
3235
3236
3237
3238
3239
3240
3241
3242
3243
3244
3245
3246
3247
3248
3249
3250
3251
3252
3253
3254
3255
3256
3257
3258
3259
3260
3261
3262
3263
3264
3265
3266
3267
3268
3269
3270
3271
3272
3273
3274
3275
3276
3277
3278
3279
3280
3281
3282
3283
3284
3285
3286
3287
3288
3289
3290
3291
3292
3293
3294
3295
3296
3297
3298
3299
3300
3301
3302
3303
3304
3305
3306
3307
3308
3309
3310
3311
3312
3313
3314
3315
3316
3317
3318
3319
3320
3321
3322
3323
3324
3325
3326
3327
3328
3329
3330
3331
3332
3333
3334
3335
3336
3337
3338
3339
3340
3341
3342
3343
3344
3345
3346
3347
3348
3349
3350
3351
3352
3353
3354
3355
3356
3357
3358
3359
3360
3361
3362
3363
3364
3365
3366
3367
3368
3369
3370
3371
3372
3373
3374
3375
3376
3377
3378
3379
3380
3381
3382
3383
3384
3385
3386
3387
3388
3389
3390
3391
3392
3393
3394
3395
3396
3397
3398
3399
3400
3401
3402
3403
3404
3405
3406
3407
3408
3409
3410
3411
3412
3413
3414
3415
3416
3417
3418
3419
3420
3421
3422
3423
3424
3425
3426
3427
3428
3429
3430
3431
3432
3433
3434
3435
3436
3437
3438
3439
3440
3441
3442
3443
3444
3445
3446
3447
3448
3449
3450
3451
3452
3453
3454
3455
3456
3457
3458
3459
3460
3461
3462
3463
3464
3465
3466
3467
3468
3469
3470
3471
3472
3473
3474
3475
3476
3477
3478
3479
3480
3481
3482
3483
3484
3485
3486
3487
3488
3489
3490
3491
3492
3493
3494
3495
3496
3497
3498
3499
3500
3501
3502
3503
3504
3505
3506
3507
3508
3509
3510
3511
3512
3513
3514
3515
3516
3517
3518
3519
3520
3521
3522
3523
3524
3525
3526
3527
3528
3529
3530
3531
3532
3533
3534
3535
3536
3537
3538
3539
3540
3541
3542
3543
3544
3545
3546
3547
3548
3549
3550
3551
3552
3553
3554
3555
3556
3557
3558
3559
3560
3561
3562
3563
3564
3565
3566
3567
3568
3569
3570
3571
3572
3573
3574
3575
3576
3577
3578
3579
3580
3581
3582
3583
3584
3585
3586
3587
3588
3589
3590
3591
3592
3593
3594
3595
3596
3597
3598
3599
3600
3601
3602
3603
3604
3605
3606
3607
3608
3609
3610
3611
3612
3613
3614
3615
3616
3617
3618
3619
3620
3621
3622
3623
3624
3625
3626
3627
3628
3629
3630
3631
3632
3633
3634
3635
3636
3637
3638
3639
3640
3641
3642
3643
3644
3645
3646
3647
3648
3649
3650
3651
3652
3653
3654
3655
3656
3657
3658
3659
3660
3661
3662
3663
3664
3665
3666
3667
3668
3669
3670
3671
3672
3673
3674
3675
3676
3677
3678
3679
3680
3681
3682
3683
3684
3685
3686
3687
3688
3689
3690
3691
3692
3693
3694
3695
3696
3697
3698
3699
3700
3701
3702
3703
3704
3705
3706
3707
3708
3709
3710
3711
3712
3713
3714
3715
3716
3717
3718
3719
3720
3721
3722
3723
3724
3725
3726
3727
3728
3729
3730
3731
3732
3733
3734
3735
3736
3737
3738
3739
3740
3741
3742
3743
3744
3745
3746
3747
3748
3749
3750
3751
3752
3753
3754
3755
3756
3757
3758
3759
3760
3761
3762
3763
3764
3765
3766
3767
3768
3769
3770
3771
3772
3773
3774
3775
3776
3777
3778
3779
3780
3781
3782
3783
3784
3785
3786
3787
3788
3789
3790
3791
3792
3793
3794
3795
3796
3797
3798
3799
3800
3801
3802
3803
3804
3805
3806
3807
3808
3809
3810
3811
3812
3813
3814
3815
3816
3817
3818
3819
3820
3821
3822
3823
3824
3825
3826
3827
3828
3829
3830
3831
3832
3833
3834
3835
3836
3837
3838
3839
3840
3841
3842
3843
3844
3845
3846
3847
3848
3849
3850
3851
3852
3853
3854
3855
3856
3857
3858
3859
3860
3861
3862
3863
3864
3865
3866
3867
3868
3869
3870
3871
3872
3873
3874
3875
3876
3877
3878
3879
3880
3881
3882
3883
3884
3885
3886
3887
3888
3889
3890
3891
3892
3893
3894
3895
3896
3897
3898
3899
3900
3901
3902
3903
3904
3905
3906
3907
3908
3909
3910
3911
3912
3913
3914
3915
3916
3917
3918
3919
3920
3921
3922
3923
3924
3925
3926
3927
3928
3929
3930
3931
3932
3933
3934
3935
3936
3937
3938
3939
3940
3941
3942
3943
3944
3945
3946
3947
3948
3949
3950
3951
3952
3953
3954
3955
3956
3957
3958
3959
3960
3961
3962
3963
3964
3965
3966
3967
3968
3969
3970
3971
3972
3973
3974
3975
3976
3977
3978
3979
3980
3981
3982
3983
3984
3985
3986
3987
3988
3989
3990
3991
3992
3993
3994
3995
3996
3997
3998
3999
4000
4001
4002
4003
4004
4005
4006
4007
4008
4009
4010
4011
4012
4013
4014
4015
4016
4017
4018
4019
4020
4021
4022
4023
4024
4025
4026
4027
4028
4029
4030
4031
4032
4033
4034
4035
4036
4037
4038
4039
4040
4041
4042
4043
4044
4045
4046
4047
4048
4049
4050
4051
4052
4053
4054
4055
4056
4057
4058
4059
4060
4061
4062
4063
4064
4065
4066
4067
4068
4069
4070
4071
4072
4073
4074
4075
4076
4077
4078
4079
4080
4081
4082
4083
4084
4085
4086
4087
4088
4089
4090
4091
4092
4093
4094
4095
4096
4097
4098
4099
4100
4101
4102
4103
4104
4105
4106
4107
4108
4109
4110
4111
4112
4113
4114
4115
4116
4117
4118
4119
4120
4121
4122
4123
4124
4125
4126
4127
4128
4129
4130
4131
4132
4133
4134
4135
4136
4137
4138
4139
4140
4141
4142
4143
4144
4145
4146
4147
4148
4149
4150
4151
4152
4153
4154
4155
4156
4157
4158
4159
4160
4161
4162
4163
4164
4165
4166
4167
4168
4169
4170
4171
4172
4173
4174
4175
4176
4177
4178
4179
4180
4181
4182
4183
4184
4185
4186
4187
4188
4189
4190
4191
4192
4193
4194
4195
4196
4197
4198
4199
4200
4201
4202
4203
4204
4205
4206
4207
4208
4209
4210
4211
4212
4213
4214
4215
4216
4217
4218
4219
4220
4221
4222
4223
4224
4225
4226
4227
4228
4229
4230
4231
4232
4233
4234
4235
4236
4237
4238
4239
4240
4241
4242
4243
4244
4245
4246
4247
4248
4249
4250
4251
4252
4253
4254
4255
4256
4257
4258
4259
4260
4261
4262
4263
4264
4265
4266
4267
4268
4269
4270
4271
4272
4273
4274
4275
4276
4277
4278
4279
4280
4281
4282
4283
4284
4285
4286
4287
4288
4289
4290
4291
4292
4293
4294
4295
4296
4297
4298
4299
4300
4301
4302
4303
4304
4305
4306
4307
4308
4309
4310
4311
4312
4313
4314
4315
4316
4317
4318
4319
4320
4321
4322
4323
4324
4325
4326
4327
4328
4329
4330
4331
4332
4333
4334
4335
4336
4337
4338
4339
4340
4341
4342
4343
4344
4345
4346
4347
4348
4349
4350
4351
4352
4353
4354
4355
4356
4357
4358
4359
4360
4361
4362
4363
4364
4365
4366
4367
4368
4369
4370
4371
4372
4373
4374
4375
4376
4377
4378
4379
4380
4381
4382
4383
4384
4385
4386
4387
4388
4389
4390
4391
4392
4393
4394
4395
4396
4397
4398
4399
4400
4401
4402
4403
4404
4405
4406
4407
4408
4409
4410
4411
4412
4413
4414
4415
4416
4417
4418
4419
4420
4421
4422
4423
4424
4425
4426
4427
4428
4429
4430
4431
4432
4433
4434
4435
4436
4437
4438
4439
4440
4441
4442
4443
4444
4445
4446
4447
4448
4449
4450
4451
4452
4453
4454
4455
4456
4457
4458
4459
4460
4461
4462
4463
4464
4465
4466
4467
4468
4469
4470
4471
4472
4473
4474
4475
4476
4477
4478
4479
4480
4481
4482
4483
4484
4485
4486
4487
4488
4489
4490
4491
4492
4493
4494
4495
4496
4497
4498
4499
4500
4501
4502
4503
4504
4505
4506
4507
4508
4509
4510
4511
4512
4513
4514
4515
4516
4517
4518
4519
4520
4521
4522
4523
4524
4525
4526
4527
4528
4529
4530
4531
4532
4533
4534
4535
4536
4537
4538
4539
4540
4541
4542
4543
4544
4545
4546
4547
4548
4549
4550
4551
4552
4553
4554
4555
4556
4557
4558
4559
4560
4561
4562
4563
4564
4565
4566
4567
4568
4569
4570
4571
4572
4573
4574
4575
4576
4577
4578
4579
4580
4581
4582
4583
4584
4585
4586
4587
4588
4589
4590
4591
4592
4593
4594
4595
4596
4597
4598
4599
4600
4601
4602
4603
4604
4605
4606
4607
4608
4609
4610
4611
4612
4613
4614
4615
4616
4617
4618
4619
4620
4621
4622
4623
4624
4625
4626
4627
4628
4629
4630
4631
4632
4633
4634
4635
4636
4637
4638
4639
4640
4641
4642
4643
4644
4645
4646
4647
4648
4649
4650
4651
4652
4653
4654
4655
4656
4657
4658
4659
4660
4661
4662
4663
4664
4665
4666
4667
4668
4669
4670
4671
4672
4673
4674
4675
4676
4677
4678
4679
4680
4681
4682
4683
4684
4685
4686
4687
4688
4689
4690
4691
4692
4693
4694
4695
4696
4697
4698
4699
4700
4701
4702
4703
4704
4705
4706
4707
4708
4709
4710
4711
4712
4713
4714
4715
4716
4717
4718
4719
4720
4721
4722
4723
4724
4725
4726
4727
4728
4729
4730
4731
4732
4733
4734
4735
4736
4737
4738
4739
4740
4741
4742
4743
4744
4745
4746
4747
4748
4749
4750
4751
4752
4753
4754
4755
4756
4757
4758
4759
4760
4761
4762
4763
4764
4765
4766
4767
4768
4769
4770
4771
4772
4773
4774
4775
4776
4777
4778
4779
4780
4781
4782
4783
4784
4785
4786
4787
4788
4789
4790
4791
4792
4793
4794
4795
4796
4797
4798
4799
4800
4801
4802
4803
4804
4805
4806
4807
4808
4809
4810
4811
4812
4813
4814
4815
4816
4817
4818
4819
4820
4821
4822
4823
4824
4825
4826
4827
4828
4829
4830
4831
4832
4833
4834
4835
4836
4837
4838
4839
4840
4841
4842
4843
4844
4845
4846
4847
4848
4849
4850
4851
4852
4853
4854
4855
4856
4857
4858
4859
4860
4861
4862
4863
4864
4865
4866
4867
4868
4869
4870
4871
4872
4873
4874
4875
4876
4877
4878
4879
4880
4881
4882
4883
4884
4885
4886
4887
4888
4889
4890
4891
4892
4893
4894
4895
4896
4897
4898
4899
4900
4901
4902
4903
4904
4905
4906
4907
4908
4909
4910
4911
4912
4913
4914
4915
4916
4917
4918
4919
4920
4921
4922
4923
4924
4925
4926
4927
4928
4929
4930
4931
4932
4933
4934
4935
4936
4937
4938
4939
4940
4941
4942
4943
4944
4945
4946
4947
4948
4949
4950
4951
4952
4953
4954
4955
4956
4957
4958
4959
4960
4961
4962
4963
4964
4965
4966
4967
4968
4969
4970
4971
4972
4973
4974
4975
4976
4977
4978
4979
4980
4981
4982
4983
4984
4985
4986
4987
4988
4989
4990
4991
4992
4993
4994
4995
4996
4997
4998
4999
5000
5001
5002
5003
5004
5005
5006
5007
5008
5009
5010
5011
5012
5013
5014
5015
5016
5017
5018
5019
5020
5021
5022
5023
5024
5025
5026
5027
5028
5029
5030
5031
5032
5033
5034
5035
5036
5037
5038
5039
5040
5041
5042
5043
5044
5045
5046
5047
5048
5049
5050
5051
5052
5053
5054
5055
5056
5057
5058
5059
5060
5061
5062
5063
5064
5065
5066
5067
5068
5069
5070
5071
5072
5073
5074
5075
5076
5077
5078
5079
5080
5081
5082
5083
5084
5085
5086
5087
5088
5089
5090
5091
5092
5093
5094
5095
5096
5097
5098
5099
5100
5101
5102
5103
5104
5105
5106
5107
5108
5109
5110
5111
5112
5113
5114
5115
5116
5117
5118
5119
5120
5121
5122
5123
5124
5125
5126
5127
5128
5129
5130
5131
5132
5133
5134
5135
5136
5137
5138
5139
5140
5141
5142
5143
5144
5145
5146
5147
5148
5149
5150
5151
5152
5153
5154
5155
5156
5157
5158
5159
5160
5161
5162
5163
5164
5165
5166
5167
5168
5169
5170
5171
5172
5173
5174
5175
5176
5177
5178
5179
5180
5181
5182
5183
5184
5185
5186
5187
5188
5189
5190
5191
5192
5193
5194
5195
5196
5197
5198
5199
5200
5201
5202
5203
5204
5205
5206
5207
5208
5209
5210
5211
5212
5213
5214
5215
5216
5217
5218
5219
5220
5221
5222
5223
5224
5225
5226
5227
5228
5229
5230
5231
5232
5233
5234
5235
5236
5237
5238
5239
5240
5241
5242
5243
5244
5245
5246
5247
5248
5249
5250
5251
5252
5253
5254
5255
5256
5257
5258
5259
5260
5261
5262
5263
5264
5265
5266
5267
5268
5269
5270
5271
5272
5273
5274
5275
5276
5277
5278
5279
5280
5281
5282
5283
5284
5285
5286
5287
5288
5289
5290
5291
5292
5293
5294
5295
5296
5297
5298
5299
5300
5301
5302
5303
5304
5305
5306
5307
5308
5309
5310
5311
5312
5313
5314
5315
5316
5317
5318
5319
5320
5321
5322
5323
5324
5325
5326
5327
5328
5329
5330
5331
5332
5333
5334
5335
5336
5337
5338
5339
5340
5341
5342
5343
5344
5345
5346
5347
5348
5349
5350
5351
5352
5353
5354
5355
5356
5357
5358
5359
5360
5361
5362
5363
5364
5365
5366
5367
5368
5369
5370
5371
5372
5373
5374
5375
5376
5377
5378
5379
5380
5381
5382
5383
5384
5385
5386
5387
5388
5389
5390
5391
5392
5393
5394
5395
5396
5397
5398
5399
5400
5401
5402
5403
5404
5405
5406
5407
5408
5409
5410
5411
5412
5413
5414
5415
5416
5417
5418
5419
5420
5421
5422
5423
5424
5425
5426
5427
5428
5429
5430
5431
5432
5433
5434
5435
5436
5437
5438
5439
5440
5441
5442
5443
5444
5445
5446
5447
5448
5449
5450
5451
5452
5453
5454
5455
5456
5457
5458
5459
5460
5461
5462
5463
5464
5465
5466
|
<!-- doc/src/sgml/release-9.1.sgml -->
<!-- See header comment in release.sgml about typical markup -->
<sect1 id="release-9-1-6">
<title>Release 9.1.6</title>
<note>
<title>Release Date</title>
<simpara>2012-09-24</simpara>
</note>
<para>
This release contains a variety of fixes from 9.1.5.
For information about new features in the 9.1 major release, see
<xref linkend="release-9-1">.
</para>
<sect2>
<title>Migration to Version 9.1.6</title>
<para>
A dump/restore is not required for those running 9.1.X.
</para>
<para>
However, you may need to perform <command>REINDEX</> operations to
recover from the effects of the data corruption bug described in the
first changelog item below.
</para>
<para>
Also, if you are upgrading from a version earlier than 9.1.4,
see the release notes for 9.1.4.
</para>
</sect2>
<sect2>
<title>Changes</title>
<itemizedlist>
<listitem>
<para>
Fix persistence marking of shared buffers during WAL replay
(Jeff Davis)
</para>
<para>
This mistake can result in buffers not being written out during
checkpoints, resulting in data corruption if the server later crashes
without ever having written those buffers. Corruption can occur on
any server following crash recovery, but it is significantly more
likely to occur on standby slave servers since those perform much
more WAL replay. There is a low probability of corruption of btree
and GIN indexes. There is a much higher probability of corruption of
table <quote>visibility maps</>. Fortunately, visibility maps are
non-critical data in 9.1, so the worst consequence of such corruption
in 9.1 installations is transient inefficiency of vacuuming. Table
data proper cannot be corrupted by this bug.
</para>
<para>
While no index corruption due to this bug is known to have occurred
in the field, as a precautionary measure it is recommended that
production installations <command>REINDEX</> all btree and GIN
indexes at a convenient time after upgrading to 9.1.6.
</para>
<para>
Also, if you intend to do an in-place upgrade to 9.2.X, before doing
so it is recommended to perform a <command>VACUUM</> of all tables
while having <link
linkend="guc-vacuum-freeze-table-age"><varname>vacuum_freeze_table_age</></link>
set to zero. This will ensure that any lingering wrong data in the
visibility maps is corrected before 9.2.X can depend on it. <link
linkend="guc-vacuum-cost-delay"><varname>vacuum_cost_delay</></link>
can be adjusted to reduce the performance impact of vacuuming, while
causing it to take longer to finish.
</para>
</listitem>
<listitem>
<para>
Fix planner's assignment of executor parameters, and fix executor's
rescan logic for CTE plan nodes (Tom Lane)
</para>
<para>
These errors could result in wrong answers from queries that scan the
same <literal>WITH</> subquery multiple times.
</para>
</listitem>
<listitem>
<para>
Fix misbehavior when <link
linkend="guc-default-transaction-isolation"><varname>default_transaction_isolation</></link>
is set to <literal>serializable</> (Kevin Grittner, Tom Lane, Heikki
Linnakangas)
</para>
<para>
Symptoms include crashes at process start on Windows, and crashes in
hot standby operation.
</para>
</listitem>
<listitem>
<para>
Improve selectivity estimation for text search queries involving
prefixes, i.e. <replaceable>word</><literal>:*</> patterns (Tom Lane)
</para>
<para>
</para>
</listitem>
<listitem>
<para>
Improve page-splitting decisions in GiST indexes (Alexander Korotkov,
Robert Haas, Tom Lane)
</para>
<para>
Multi-column GiST indexes might suffer unexpected bloat due to this
error.
</para>
</listitem>
<listitem>
<para>
Fix cascading privilege revoke to stop if privileges are still held
(Tom Lane)
</para>
<para>
If we revoke a grant option from some role <replaceable>X</>, but
<replaceable>X</> still holds that option via a grant from someone
else, we should not recursively revoke the corresponding privilege
from role(s) <replaceable>Y</> that <replaceable>X</> had granted it
to.
</para>
</listitem>
<listitem>
<para>
Disallow extensions from containing the schema they are assigned to
(Thom Brown)
</para>
<para>
This situation creates circular dependencies that confuse
<application>pg_dump</> and probably other things. It's confusing
for humans too, so disallow it.
</para>
</listitem>
<listitem>
<para>
Improve error messages for Hot Standby misconfiguration errors
(Gurjeet Singh)
</para>
</listitem>
<listitem>
<para>
Make <application>configure</> probe for <function>mbstowcs_l</> (Tom
Lane)
</para>
<para>
This fixes build failures on some versions of AIX.
</para>
</listitem>
<listitem>
<para>
Fix handling of <literal>SIGFPE</> when PL/Perl is in use (Andres Freund)
</para>
<para>
Perl resets the process's <literal>SIGFPE</> handler to
<literal>SIG_IGN</>, which could result in crashes later on. Restore
the normal Postgres signal handler after initializing PL/Perl.
</para>
</listitem>
<listitem>
<para>
Prevent PL/Perl from crashing if a recursive PL/Perl function is
redefined while being executed (Tom Lane)
</para>
</listitem>
<listitem>
<para>
Work around possible misoptimization in PL/Perl (Tom Lane)
</para>
<para>
Some Linux distributions contain an incorrect version of
<filename>pthread.h</> that results in incorrect compiled code in
PL/Perl, leading to crashes if a PL/Perl function calls another one
that throws an error.
</para>
</listitem>
<listitem>
<para>
Fix bugs in <filename>contrib/pg_trgm</>'s <literal>LIKE</> pattern
analysis code (Fujii Masao)
</para>
<para>
<literal>LIKE</> queries using a trigram index could produce wrong
results if the pattern contained <literal>LIKE</> escape characters.
</para>
</listitem>
<listitem>
<para>
Fix <application>pg_upgrade</>'s handling of line endings on Windows
(Andrew Dunstan)
</para>
<para>
Previously, <application>pg_upgrade</> might add or remove carriage
returns in places such as function bodies.
</para>
</listitem>
<listitem>
<para>
On Windows, make <application>pg_upgrade</> use backslash path
separators in the scripts it emits (Andrew Dunstan)
</para>
</listitem>
<listitem>
<para>
Remove unnecessary dependency on <application>pg_config</> from
<application>pg_upgrade</> (Peter Eisentraut)
</para>
</listitem>
<listitem>
<para>
Update time zone data files to <application>tzdata</> release 2012f
for DST law changes in Fiji
</para>
</listitem>
</itemizedlist>
</sect2>
</sect1>
<sect1 id="release-9-1-5">
<title>Release 9.1.5</title>
<note>
<title>Release Date</title>
<simpara>2012-08-17</simpara>
</note>
<para>
This release contains a variety of fixes from 9.1.4.
For information about new features in the 9.1 major release, see
<xref linkend="release-9-1">.
</para>
<sect2>
<title>Migration to Version 9.1.5</title>
<para>
A dump/restore is not required for those running 9.1.X.
</para>
<para>
However, if you are upgrading from a version earlier than 9.1.4,
see the release notes for 9.1.4.
</para>
</sect2>
<sect2>
<title>Changes</title>
<itemizedlist>
<listitem>
<para>
Prevent access to external files/URLs via XML entity references
(Noah Misch, Tom Lane)
</para>
<para>
<function>xml_parse()</> would attempt to fetch external files or
URLs as needed to resolve DTD and entity references in an XML value,
thus allowing unprivileged database users to attempt to fetch data
with the privileges of the database server. While the external data
wouldn't get returned directly to the user, portions of it could be
exposed in error messages if the data didn't parse as valid XML; and
in any case the mere ability to check existence of a file might be
useful to an attacker. (CVE-2012-3489)
</para>
</listitem>
<listitem>
<para>
Prevent access to external files/URLs via <filename>contrib/xml2</>'s
<function>xslt_process()</> (Peter Eisentraut)
</para>
<para>
<application>libxslt</> offers the ability to read and write both
files and URLs through stylesheet commands, thus allowing
unprivileged database users to both read and write data with the
privileges of the database server. Disable that through proper use
of <application>libxslt</>'s security options. (CVE-2012-3488)
</para>
<para>
Also, remove <function>xslt_process()</>'s ability to fetch documents
and stylesheets from external files/URLs. While this was a
documented <quote>feature</>, it was long regarded as a bad idea.
The fix for CVE-2012-3489 broke that capability, and rather than
expend effort on trying to fix it, we're just going to summarily
remove it.
</para>
</listitem>
<listitem>
<para>
Prevent too-early recycling of btree index pages (Noah Misch)
</para>
<para>
When we allowed read-only transactions to skip assigning XIDs, we
introduced the possibility that a deleted btree page could be
recycled while a read-only transaction was still in flight to it.
This would result in incorrect index search results. The probability
of such an error occurring in the field seems very low because of the
timing requirements, but nonetheless it should be fixed.
</para>
</listitem>
<listitem>
<para>
Fix crash-safety bug with newly-created-or-reset sequences (Tom Lane)
</para>
<para>
If <command>ALTER SEQUENCE</> was executed on a freshly created or
reset sequence, and then precisely one <function>nextval()</> call
was made on it, and then the server crashed, WAL replay would restore
the sequence to a state in which it appeared that no
<function>nextval()</> had been done, thus allowing the first
sequence value to be returned again by the next
<function>nextval()</> call. In particular this could manifest for
<type>serial</> columns, since creation of a serial column's sequence
includes an <command>ALTER SEQUENCE OWNED BY</> step.
</para>
</listitem>
<listitem>
<para>
Fix race condition in <literal>enum</>-type value comparisons (Robert
Haas, Tom Lane)
</para>
<para>
Comparisons could fail when encountering an enum value added since
the current query started.
</para>
</listitem>
<listitem>
<para>
Fix <function>txid_current()</> to report the correct epoch when not
in hot standby (Heikki Linnakangas)
</para>
<para>
This fixes a regression introduced in the previous minor release.
</para>
</listitem>
<listitem>
<para>
Prevent selection of unsuitable replication connections as
the synchronous standby (Fujii Masao)
</para>
<para>
The master might improperly choose pseudo-servers such as
<application>pg_receivexlog</> or <application>pg_basebackup</>
as the synchronous standby, and then wait indefinitely for them.
</para>
</listitem>
<listitem>
<para>
Fix bug in startup of Hot Standby when a master transaction has many
subtransactions (Andres Freund)
</para>
<para>
This mistake led to failures reported as <quote>out-of-order XID
insertion in KnownAssignedXids</>.
</para>
</listitem>
<listitem>
<para>
Ensure the <filename>backup_label</> file is fsync'd after
<function>pg_start_backup()</> (Dave Kerr)
</para>
</listitem>
<listitem>
<para>
Fix timeout handling in walsender processes (Tom Lane)
</para>
<para>
WAL sender background processes neglected to establish a
<systemitem>SIGALRM</> handler, meaning they would wait forever in
some corner cases where a timeout ought to happen.
</para>
</listitem>
<listitem>
<para>
Wake walsenders after each background flush by walwriter (Andres
Freund, Simon Riggs)
</para>
<para>
This greatly reduces replication delay when the workload contains
only asynchronously-committed transactions.
</para>
</listitem>
<listitem>
<para>
Fix <literal>LISTEN</>/<literal>NOTIFY</> to cope better with I/O
problems, such as out of disk space (Tom Lane)
</para>
<para>
After a write failure, all subsequent attempts to send more
<literal>NOTIFY</> messages would fail with messages like
<quote>Could not read from file "pg_notify/<replaceable>nnnn</>" at
offset <replaceable>nnnnn</>: Success</quote>.
</para>
</listitem>
<listitem>
<para>
Only allow autovacuum to be auto-canceled by a directly blocked
process (Tom Lane)
</para>
<para>
The original coding could allow inconsistent behavior in some cases;
in particular, an autovacuum could get canceled after less than
<literal>deadlock_timeout</> grace period.
</para>
</listitem>
<listitem>
<para>
Improve logging of autovacuum cancels (Robert Haas)
</para>
</listitem>
<listitem>
<para>
Fix log collector so that <literal>log_truncate_on_rotation</> works
during the very first log rotation after server start (Tom Lane)
</para>
</listitem>
<listitem>
<para>
Fix <literal>WITH</> attached to a nested set operation
(<literal>UNION</>/<literal>INTERSECT</>/<literal>EXCEPT</>)
(Tom Lane)
</para>
</listitem>
<listitem>
<para>
Ensure that a whole-row reference to a subquery doesn't include any
extra <literal>GROUP BY</> or <literal>ORDER BY</> columns (Tom Lane)
</para>
</listitem>
<listitem>
<para>
Fix dependencies generated during <literal>ALTER TABLE ... ADD
CONSTRAINT USING INDEX</> (Tom Lane)
</para>
<para>
This command left behind a redundant <structname>pg_depend</> entry
for the index, which could confuse later operations, notably
<literal>ALTER TABLE ... ALTER COLUMN TYPE</> on one of the indexed
columns.
</para>
</listitem>
<listitem>
<para>
Fix <command>REASSIGN OWNED</> to work on extensions (Alvaro Herrera)
</para>
</listitem>
<listitem>
<para>
Disallow copying whole-row references in <literal>CHECK</>
constraints and index definitions during <command>CREATE TABLE</>
(Tom Lane)
</para>
<para>
This situation can arise in <command>CREATE TABLE</> with
<literal>LIKE</> or <literal>INHERITS</>. The copied whole-row
variable was incorrectly labeled with the row type of the original
table not the new one. Rejecting the case seems reasonable for
<literal>LIKE</>, since the row types might well diverge later. For
<literal>INHERITS</> we should ideally allow it, with an implicit
coercion to the parent table's row type; but that will require more
work than seems safe to back-patch.
</para>
</listitem>
<listitem>
<para>
Fix memory leak in <literal>ARRAY(SELECT ...)</> subqueries (Heikki
Linnakangas, Tom Lane)
</para>
</listitem>
<listitem>
<para>
Fix planner to pass correct collation to operator selectivity
estimators (Tom Lane)
</para>
<para>
This was not previously required by any core selectivity estimation
function, but third-party code might need it.
</para>
</listitem>
<listitem>
<para>
Fix extraction of common prefixes from regular expressions (Tom Lane)
</para>
<para>
The code could get confused by quantified parenthesized
subexpressions, such as <literal>^(foo)?bar</>. This would lead to
incorrect index optimization of searches for such patterns.
</para>
</listitem>
<listitem>
<para>
Fix bugs with parsing signed
<replaceable>hh</><literal>:</><replaceable>mm</> and
<replaceable>hh</><literal>:</><replaceable>mm</><literal>:</><replaceable>ss</>
fields in <type>interval</> constants (Amit Kapila, Tom Lane)
</para>
</listitem>
<listitem>
<para>
Fix <application>pg_dump</> to better handle views containing partial
<literal>GROUP BY</> lists (Tom Lane)
</para>
<para>
A view that lists only a primary key column in <literal>GROUP BY</>,
but uses other table columns as if they were grouped, gets marked as
depending on the primary key. Improper handling of such primary key
dependencies in <application>pg_dump</> resulted in poorly-ordered
dumps, which at best would be inefficient to restore and at worst
could result in outright failure of a parallel
<application>pg_restore</> run.
</para>
</listitem>
<listitem>
<para>
In PL/Perl, avoid setting UTF8 flag when in SQL_ASCII encoding
(Alex Hunsaker, Kyotaro Horiguchi, Alvaro Herrera)
</para>
</listitem>
<listitem>
<para>
Use Postgres' encoding conversion functions, not Python's, when
converting a Python Unicode string to the server encoding in
PL/Python (Jan Urbanski)
</para>
<para>
This avoids some corner-case problems, notably that Python doesn't
support all the encodings Postgres does. A notable functional change
is that if the server encoding is SQL_ASCII, you will get the UTF-8
representation of the string; formerly, any non-ASCII characters in
the string would result in an error.
</para>
</listitem>
<listitem>
<para>
Fix mapping of PostgreSQL encodings to Python encodings in PL/Python
(Jan Urbanski)
</para>
</listitem>
<listitem>
<para>
Report errors properly in <filename>contrib/xml2</>'s
<function>xslt_process()</> (Tom Lane)
</para>
</listitem>
<listitem>
<para>
Update time zone data files to <application>tzdata</> release 2012e
for DST law changes in Morocco and Tokelau
</para>
</listitem>
</itemizedlist>
</sect2>
</sect1>
<sect1 id="release-9-1-4">
<title>Release 9.1.4</title>
<note>
<title>Release Date</title>
<simpara>2012-06-04</simpara>
</note>
<para>
This release contains a variety of fixes from 9.1.3.
For information about new features in the 9.1 major release, see
<xref linkend="release-9-1">.
</para>
<sect2>
<title>Migration to Version 9.1.4</title>
<para>
A dump/restore is not required for those running 9.1.X.
</para>
<para>
However, if you use the <type>citext</> data type, and you upgraded
from a previous major release by running <application>pg_upgrade</>,
you should run <literal>CREATE EXTENSION citext FROM unpackaged</>
to avoid collation-related failures in <type>citext</> operations.
The same is necessary if you restore a dump from a pre-9.1 database
that contains an instance of the <type>citext</> data type.
If you've already run the <command>CREATE EXTENSION</> command before
upgrading to 9.1.4, you will instead need to do manual catalog updates
as explained in the third changelog item below.
</para>
<para>
Also, if you are upgrading from a version earlier than 9.1.2,
see the release notes for 9.1.2.
</para>
</sect2>
<sect2>
<title>Changes</title>
<itemizedlist>
<listitem>
<para>
Fix incorrect password transformation in
<filename>contrib/pgcrypto</>'s DES <function>crypt()</> function
(Solar Designer)
</para>
<para>
If a password string contained the byte value <literal>0x80</>, the
remainder of the password was ignored, causing the password to be much
weaker than it appeared. With this fix, the rest of the string is
properly included in the DES hash. Any stored password values that are
affected by this bug will thus no longer match, so the stored values may
need to be updated. (CVE-2012-2143)
</para>
</listitem>
<listitem>
<para>
Ignore <literal>SECURITY DEFINER</> and <literal>SET</> attributes for
a procedural language's call handler (Tom Lane)
</para>
<para>
Applying such attributes to a call handler could crash the server.
(CVE-2012-2655)
</para>
</listitem>
<listitem>
<para>
Make <filename>contrib/citext</>'s upgrade script fix collations of
<type>citext</> arrays and domains over <type>citext</>
(Tom Lane)
</para>
<para>
Release 9.1.2 provided a fix for collations of <type>citext</> columns
and indexes in databases upgraded or reloaded from pre-9.1
installations, but that fix was incomplete: it neglected to handle arrays
and domains over <type>citext</>. This release extends the module's
upgrade script to handle these cases. As before, if you have already
run the upgrade script, you'll need to run the collation update
commands by hand instead. See the 9.1.2 release notes for more
information about doing this.
</para>
</listitem>
<listitem>
<para>
Allow numeric timezone offsets in <type>timestamp</> input to be up to
16 hours away from UTC (Tom Lane)
</para>
<para>
Some historical time zones have offsets larger than 15 hours, the
previous limit. This could result in dumped data values being rejected
during reload.
</para>
</listitem>
<listitem>
<para>
Fix timestamp conversion to cope when the given time is exactly the
last DST transition time for the current timezone (Tom Lane)
</para>
<para>
This oversight has been there a long time, but was not noticed
previously because most DST-using zones are presumed to have an
indefinite sequence of future DST transitions.
</para>
</listitem>
<listitem>
<para>
Fix <type>text</> to <type>name</> and <type>char</> to <type>name</>
casts to perform string truncation correctly in multibyte encodings
(Karl Schnaitter)
</para>
</listitem>
<listitem>
<para>
Fix memory copying bug in <function>to_tsquery()</> (Heikki Linnakangas)
</para>
</listitem>
<listitem>
<para>
Ensure <function>txid_current()</> reports the correct epoch when
executed in hot standby (Simon Riggs)
</para>
</listitem>
<listitem>
<para>
Fix planner's handling of outer PlaceHolderVars within subqueries (Tom
Lane)
</para>
<para>
This bug concerns sub-SELECTs that reference variables coming from the
nullable side of an outer join of the surrounding query.
In 9.1, queries affected by this bug would fail with <quote>ERROR:
Upper-level PlaceHolderVar found where not expected</>. But in 9.0 and
8.4, you'd silently get possibly-wrong answers, since the value
transmitted into the subquery wouldn't go to null when it should.
</para>
</listitem>
<listitem>
<para>
Fix planning of <literal>UNION ALL</> subqueries with output columns
that are not simple variables (Tom Lane)
</para>
<para>
Planning of such cases got noticeably worse in 9.1 as a result of a
misguided fix for <quote>MergeAppend child's targetlist doesn't match
MergeAppend</> errors. Revert that fix and do it another way.
</para>
</listitem>
<listitem>
<para>
Fix slow session startup when <structname>pg_attribute</> is very large
(Tom Lane)
</para>
<para>
If <structname>pg_attribute</> exceeds one-fourth of
<varname>shared_buffers</>, cache rebuilding code that is sometimes
needed during session start would trigger the synchronized-scan logic,
causing it to take many times longer than normal. The problem was
particularly acute if many new sessions were starting at once.
</para>
</listitem>
<listitem>
<para>
Ensure sequential scans check for query cancel reasonably often (Merlin
Moncure)
</para>
<para>
A scan encountering many consecutive pages that contain no live tuples
would not respond to interrupts meanwhile.
</para>
</listitem>
<listitem>
<para>
Ensure the Windows implementation of <function>PGSemaphoreLock()</>
clears <varname>ImmediateInterruptOK</> before returning (Tom Lane)
</para>
<para>
This oversight meant that a query-cancel interrupt received later
in the same query could be accepted at an unsafe time, with
unpredictable but not good consequences.
</para>
</listitem>
<listitem>
<para>
Show whole-row variables safely when printing views or rules
(Abbas Butt, Tom Lane)
</para>
<para>
Corner cases involving ambiguous names (that is, the name could be
either a table or column name of the query) were printed in an
ambiguous way, risking that the view or rule would be interpreted
differently after dump and reload. Avoid the ambiguous case by
attaching a no-op cast.
</para>
</listitem>
<listitem>
<para>
Fix <command>COPY FROM</> to properly handle null marker strings that
correspond to invalid encoding (Tom Lane)
</para>
<para>
A null marker string such as <literal>E'\\0'</> should work, and did
work in the past, but the case got broken in 8.4.
</para>
</listitem>
<listitem>
<para>
Fix <command>EXPLAIN VERBOSE</> for writable CTEs containing
<literal>RETURNING</> clauses (Tom Lane)
</para>
</listitem>
<listitem>
<para>
Fix <command>PREPARE TRANSACTION</> to work correctly in the presence
of advisory locks (Tom Lane)
</para>
<para>
Historically, <command>PREPARE TRANSACTION</> has simply ignored any
session-level advisory locks the session holds, but this case was
accidentally broken in 9.1.
</para>
</listitem>
<listitem>
<para>
Fix truncation of unlogged tables (Robert Haas)
</para>
</listitem>
<listitem>
<para>
Ignore missing schemas during non-interactive assignments of
<varname>search_path</> (Tom Lane)
</para>
<para>
This re-aligns 9.1's behavior with that of older branches. Previously
9.1 would throw an error for nonexistent schemas mentioned in
<varname>search_path</> settings obtained from places such as
<command>ALTER DATABASE SET</>.
</para>
</listitem>
<listitem>
<para>
Fix bugs with temporary or transient tables used in extension scripts
(Tom Lane)
</para>
<para>
This includes cases such as a rewriting <command>ALTER TABLE</> within
an extension update script, since that uses a transient table behind
the scenes.
</para>
</listitem>
<listitem>
<para>
Ensure autovacuum worker processes perform stack depth checking
properly (Heikki Linnakangas)
</para>
<para>
Previously, infinite recursion in a function invoked by
auto-<command>ANALYZE</> could crash worker processes.
</para>
</listitem>
<listitem>
<para>
Fix logging collector to not lose log coherency under high load (Andrew
Dunstan)
</para>
<para>
The collector previously could fail to reassemble large messages if it
got too busy.
</para>
</listitem>
<listitem>
<para>
Fix logging collector to ensure it will restart file rotation
after receiving <systemitem>SIGHUP</> (Tom Lane)
</para>
</listitem>
<listitem>
<para>
Fix <quote>too many LWLocks taken</> failure in GiST indexes (Heikki
Linnakangas)
</para>
</listitem>
<listitem>
<para>
Fix WAL replay logic for GIN indexes to not fail if the index was
subsequently dropped (Tom Lane)
</para>
</listitem>
<listitem>
<para>
Correctly detect SSI conflicts of prepared transactions after a crash
(Dan Ports)
</para>
</listitem>
<listitem>
<para>
Avoid synchronous replication delay when committing a transaction that
only modified temporary tables (Heikki Linnakangas)
</para>
<para>
In such a case the transaction's commit record need not be flushed to
standby servers, but some of the code didn't know that and waited for
it to happen anyway.
</para>
</listitem>
<listitem>
<para>
Fix error handling in <application>pg_basebackup</>
(Thomas Ogrisegg, Fujii Masao)
</para>
</listitem>
<listitem>
<para>
Fix <application>walsender</> to not go into a busy loop if connection
is terminated (Fujii Masao)
</para>
</listitem>
<listitem>
<para>
Fix memory leak in PL/pgSQL's <command>RETURN NEXT</> command (Joe
Conway)
</para>
</listitem>
<listitem>
<para>
Fix PL/pgSQL's <command>GET DIAGNOSTICS</> command when the target
is the function's first variable (Tom Lane)
</para>
</listitem>
<listitem>
<para>
Ensure that PL/Perl package-qualifies the <varname>_TD</> variable
(Alex Hunsaker)
</para>
<para>
This bug caused trigger invocations to fail when they are nested
within a function invocation that changes the current package.
</para>
</listitem>
<listitem>
<para>
Fix PL/Python functions returning composite types to accept a string
for their result value (Jan Urbanski)
</para>
<para>
This case was accidentally broken by the 9.1 additions to allow a
composite result value to be supplied in other formats, such as
dictionaries.
</para>
</listitem>
<listitem>
<para>
Fix potential access off the end of memory in <application>psql</>'s
expanded display (<command>\x</>) mode (Peter Eisentraut)
</para>
</listitem>
<listitem>
<para>
Fix several performance problems in <application>pg_dump</> when
the database contains many objects (Jeff Janes, Tom Lane)
</para>
<para>
<application>pg_dump</> could get very slow if the database contained
many schemas, or if many objects are in dependency loops, or if there
are many owned sequences.
</para>
</listitem>
<listitem>
<para>
Fix memory and file descriptor leaks in <application>pg_restore</>
when reading a directory-format archive (Peter Eisentraut)
</para>
</listitem>
<listitem>
<para>
Fix <application>pg_upgrade</> for the case that a database stored in a
non-default tablespace contains a table in the cluster's default
tablespace (Bruce Momjian)
</para>
</listitem>
<listitem>
<para>
In <application>ecpg</>, fix rare memory leaks and possible overwrite
of one byte after the <structname>sqlca_t</> structure (Peter Eisentraut)
</para>
</listitem>
<listitem>
<para>
Fix <filename>contrib/dblink</>'s <function>dblink_exec()</> to not leak
temporary database connections upon error (Tom Lane)
</para>
</listitem>
<listitem>
<para>
Fix <filename>contrib/dblink</> to report the correct connection name in
error messages (Kyotaro Horiguchi)
</para>
</listitem>
<listitem>
<para>
Fix <filename>contrib/vacuumlo</> to use multiple transactions when
dropping many large objects (Tim Lewis, Robert Haas, Tom Lane)
</para>
<para>
This change avoids exceeding <varname>max_locks_per_transaction</> when
many objects need to be dropped. The behavior can be adjusted with the
new <literal>-l</> (limit) option.
</para>
</listitem>
<listitem>
<para>
Update time zone data files to <application>tzdata</> release 2012c
for DST law changes in Antarctica, Armenia, Chile, Cuba, Falkland
Islands, Gaza, Haiti, Hebron, Morocco, Syria, and Tokelau Islands;
also historical corrections for Canada.
</para>
</listitem>
</itemizedlist>
</sect2>
</sect1>
<sect1 id="release-9-1-3">
<title>Release 9.1.3</title>
<note>
<title>Release Date</title>
<simpara>2012-02-27</simpara>
</note>
<para>
This release contains a variety of fixes from 9.1.2.
For information about new features in the 9.1 major release, see
<xref linkend="release-9-1">.
</para>
<sect2>
<title>Migration to Version 9.1.3</title>
<para>
A dump/restore is not required for those running 9.1.X.
</para>
<para>
However, if you are upgrading from a version earlier than 9.1.2,
see the release notes for 9.1.2.
</para>
</sect2>
<sect2>
<title>Changes</title>
<itemizedlist>
<listitem>
<para>
Require execute permission on the trigger function for
<command>CREATE TRIGGER</> (Robert Haas)
</para>
<para>
This missing check could allow another user to execute a trigger
function with forged input data, by installing it on a table he owns.
This is only of significance for trigger functions marked
<literal>SECURITY DEFINER</>, since otherwise trigger functions run
as the table owner anyway. (CVE-2012-0866)
</para>
</listitem>
<listitem>
<para>
Remove arbitrary limitation on length of common name in SSL
certificates (Heikki Linnakangas)
</para>
<para>
Both <application>libpq</> and the server truncated the common name
extracted from an SSL certificate at 32 bytes. Normally this would
cause nothing worse than an unexpected verification failure, but there
are some rather-implausible scenarios in which it might allow one
certificate holder to impersonate another. The victim would have to
have a common name exactly 32 bytes long, and the attacker would have
to persuade a trusted CA to issue a certificate in which the common
name has that string as a prefix. Impersonating a server would also
require some additional exploit to redirect client connections.
(CVE-2012-0867)
</para>
</listitem>
<listitem>
<para>
Convert newlines to spaces in names written in <application>pg_dump</>
comments (Robert Haas)
</para>
<para>
<application>pg_dump</> was incautious about sanitizing object names
that are emitted within SQL comments in its output script. A name
containing a newline would at least render the script syntactically
incorrect. Maliciously crafted object names could present a SQL
injection risk when the script is reloaded. (CVE-2012-0868)
</para>
</listitem>
<listitem>
<para>
Fix btree index corruption from insertions concurrent with vacuuming
(Tom Lane)
</para>
<para>
An index page split caused by an insertion could sometimes cause a
concurrently-running <command>VACUUM</> to miss removing index entries
that it should remove. After the corresponding table rows are removed,
the dangling index entries would cause errors (such as <quote>could not
read block N in file ...</>) or worse, silently wrong query results
after unrelated rows are re-inserted at the now-free table locations.
This bug has been present since release 8.2, but occurs so infrequently
that it was not diagnosed until now. If you have reason to suspect
that it has happened in your database, reindexing the affected index
will fix things.
</para>
</listitem>
<listitem>
<para>
Fix transient zeroing of shared buffers during WAL replay (Tom Lane)
</para>
<para>
The replay logic would sometimes zero and refill a shared buffer, so
that the contents were transiently invalid. In hot standby mode this
can result in a query that's executing in parallel seeing garbage data.
Various symptoms could result from that, but the most common one seems
to be <quote>invalid memory alloc request size</>.
</para>
</listitem>
<listitem>
<para>
Fix handling of data-modifying <literal>WITH</> subplans in
<literal>READ COMMITTED</> rechecking (Tom Lane)
</para>
<para>
A <literal>WITH</> clause containing
<command>INSERT</>/<command>UPDATE</>/<command>DELETE</> would crash
if the parent <command>UPDATE</> or <command>DELETE</> command needed
to be re-evaluated at one or more rows due to concurrent updates
in <literal>READ COMMITTED</> mode.
</para>
</listitem>
<listitem>
<para>
Fix corner case in SSI transaction cleanup
(Dan Ports)
</para>
<para>
When finishing up a read-write serializable transaction,
a crash could occur if all remaining active serializable transactions
are read-only.
</para>
</listitem>
<listitem>
<para>
Fix postmaster to attempt restart after a hot-standby crash (Tom Lane)
</para>
<para>
A logic error caused the postmaster to terminate, rather than attempt
to restart the cluster, if any backend process crashed while operating
in hot standby mode.
</para>
</listitem>
<listitem>
<para>
Fix <command>CLUSTER</>/<command>VACUUM FULL</> handling of toast
values owned by recently-updated rows (Tom Lane)
</para>
<para>
This oversight could lead to <quote>duplicate key value violates unique
constraint</> errors being reported against the toast table's index
during one of these commands.
</para>
</listitem>
<listitem>
<para>
Update per-column permissions, not only per-table permissions, when
changing table owner (Tom Lane)
</para>
<para>
Failure to do this meant that any previously granted column permissions
were still shown as having been granted by the old owner. This meant
that neither the new owner nor a superuser could revoke the
now-untraceable-to-table-owner permissions.
</para>
</listitem>
<listitem>
<para>
Support foreign data wrappers and foreign servers in
<command>REASSIGN OWNED</> (Alvaro Herrera)
</para>
<para>
This command failed with <quote>unexpected classid</> errors if
it needed to change the ownership of any such objects.
</para>
</listitem>
<listitem>
<para>
Allow non-existent values for some settings in <command>ALTER
USER/DATABASE SET</> (Heikki Linnakangas)
</para>
<para>
Allow <varname>default_text_search_config</>,
<varname>default_tablespace</>, and <varname>temp_tablespaces</> to be
set to names that are not known. This is because they might be known
in another database where the setting is intended to be used, or for the
tablespace cases because the tablespace might not be created yet. The
same issue was previously recognized for <varname>search_path</>, and
these settings now act like that one.
</para>
</listitem>
<listitem>
<para>
Fix <quote>unsupported node type</> error caused by <literal>COLLATE</>
in an <command>INSERT</> expression (Tom Lane)
</para>
</listitem>
<listitem>
<para>
Avoid crashing when we have problems deleting table files post-commit
(Tom Lane)
</para>
<para>
Dropping a table should lead to deleting the underlying disk files only
after the transaction commits. In event of failure then (for instance,
because of wrong file permissions) the code is supposed to just emit a
warning message and go on, since it's too late to abort the
transaction. This logic got broken as of release 8.4, causing such
situations to result in a PANIC and an unrestartable database.
</para>
</listitem>
<listitem>
<para>
Recover from errors occurring during WAL replay of <command>DROP
TABLESPACE</> (Tom Lane)
</para>
<para>
Replay will attempt to remove the tablespace's directories, but there
are various reasons why this might fail (for example, incorrect
ownership or permissions on those directories). Formerly the replay
code would panic, rendering the database unrestartable without manual
intervention. It seems better to log the problem and continue, since
the only consequence of failure to remove the directories is some
wasted disk space.
</para>
</listitem>
<listitem>
<para>
Fix race condition in logging AccessExclusiveLocks for hot standby
(Simon Riggs)
</para>
<para>
Sometimes a lock would be logged as being held by <quote>transaction
zero</>. This is at least known to produce assertion failures on
slave servers, and might be the cause of more serious problems.
</para>
</listitem>
<listitem>
<para>
Track the OID counter correctly during WAL replay, even when it wraps
around (Tom Lane)
</para>
<para>
Previously the OID counter would remain stuck at a high value until the
system exited replay mode. The practical consequences of that are
usually nil, but there are scenarios wherein a standby server that's
been promoted to master might take a long time to advance the OID
counter to a reasonable value once values are needed.
</para>
</listitem>
<listitem>
<para>
Prevent emitting misleading <quote>consistent recovery state reached</>
log message at the beginning of crash recovery (Heikki Linnakangas)
</para>
</listitem>
<listitem>
<para>
Fix initial value of
<structname>pg_stat_replication</>.<structfield>replay_location</>
(Fujii Masao)
</para>
<para>
Previously, the value shown would be wrong until at least one WAL
record had been replayed.
</para>
</listitem>
<listitem>
<para>
Fix regular expression back-references with <literal>*</> attached
(Tom Lane)
</para>
<para>
Rather than enforcing an exact string match, the code would effectively
accept any string that satisfies the pattern sub-expression referenced
by the back-reference symbol.
</para>
<para>
A similar problem still afflicts back-references that are embedded in a
larger quantified expression, rather than being the immediate subject
of the quantifier. This will be addressed in a future
<productname>PostgreSQL</> release.
</para>
</listitem>
<listitem>
<para>
Fix recently-introduced memory leak in processing of
<type>inet</>/<type>cidr</> values (Heikki Linnakangas)
</para>
<para>
A patch in the December 2011 releases of <productname>PostgreSQL</>
caused memory leakage in these operations, which could be significant
in scenarios such as building a btree index on such a column.
</para>
</listitem>
<listitem>
<para>
Fix planner's ability to push down index-expression restrictions
through <literal>UNION ALL</> (Tom Lane)
</para>
<para>
This type of optimization was inadvertently disabled by a fix for
another problem in 9.1.2.
</para>
</listitem>
<listitem>
<para>
Fix planning of <literal>WITH</> clauses referenced in
<command>UPDATE</>/<command>DELETE</> on an inherited table
(Tom Lane)
</para>
<para>
This bug led to <quote>could not find plan for CTE</> failures.
</para>
</listitem>
<listitem>
<para>
Fix GIN cost estimation to handle <literal>column IN (...)</>
index conditions (Marti Raudsepp)
</para>
<para>
This oversight would usually lead to crashes if such a condition could
be used with a GIN index.
</para>
</listitem>
<listitem>
<para>
Prevent assertion failure when exiting a session with an open, failed
transaction (Tom Lane)
</para>
<para>
This bug has no impact on normal builds with asserts not enabled.
</para>
</listitem>
<listitem>
<para>
Fix dangling pointer after <command>CREATE TABLE AS</>/<command>SELECT
INTO</> in a SQL-language function (Tom Lane)
</para>
<para>
In most cases this only led to an assertion failure in assert-enabled
builds, but worse consequences seem possible.
</para>
</listitem>
<listitem>
<para>
Avoid double close of file handle in syslogger on Windows (MauMau)
</para>
<para>
Ordinarily this error was invisible, but it would cause an exception
when running on a debug version of Windows.
</para>
</listitem>
<listitem>
<para>
Fix I/O-conversion-related memory leaks in plpgsql
(Andres Freund, Jan Urbanski, Tom Lane)
</para>
<para>
Certain operations would leak memory until the end of the current
function.
</para>
</listitem>
<listitem>
<para>
Work around bug in perl's SvPVutf8() function (Andrew Dunstan)
</para>
<para>
This function crashes when handed a typeglob or certain read-only
objects such as <literal>$^V</>. Make plperl avoid passing those to
it.
</para>
</listitem>
<listitem>
<para>
In <application>pg_dump</>, don't dump contents of an extension's
configuration tables if the extension itself is not being dumped
(Tom Lane)
</para>
</listitem>
<listitem>
<para>
Improve <application>pg_dump</>'s handling of inherited table columns
(Tom Lane)
</para>
<para>
<application>pg_dump</> mishandled situations where a child column has
a different default expression than its parent column. If the default
is textually identical to the parent's default, but not actually the
same (for instance, because of schema search path differences) it would
not be recognized as different, so that after dump and restore the
child would be allowed to inherit the parent's default. Child columns
that are <literal>NOT NULL</> where their parent is not could also be
restored subtly incorrectly.
</para>
</listitem>
<listitem>
<para>
Fix <application>pg_restore</>'s direct-to-database mode for
INSERT-style table data (Tom Lane)
</para>
<para>
Direct-to-database restores from archive files made with
<option>--inserts</> or <option>--column-inserts</> options fail when
using <application>pg_restore</> from a release dated September or
December 2011, as a result of an oversight in a fix for another
problem. The archive file itself is not at fault, and text-mode
output is okay.
</para>
</listitem>
<listitem>
<para>
Teach <application>pg_upgrade</> to handle renaming of
<application>plpython</>'s shared library (Bruce Momjian)
</para>
<para>
Upgrading a pre-9.1 database that included plpython would fail because
of this oversight.
</para>
</listitem>
<listitem>
<para>
Allow <application>pg_upgrade</> to process tables containing
<type>regclass</> columns (Bruce Momjian)
</para>
<para>
Since <application>pg_upgrade</> now takes care to preserve
<structname>pg_class</> OIDs, there was no longer any reason for this
restriction.
</para>
</listitem>
<listitem>
<para>
Make <application>libpq</> ignore <literal>ENOTDIR</> errors
when looking for an SSL client certificate file
(Magnus Hagander)
</para>
<para>
This allows SSL connections to be established, though without a
certificate, even when the user's home directory is set to something
like <literal>/dev/null</>.
</para>
</listitem>
<listitem>
<para>
Fix some more field alignment issues in <application>ecpg</>'s SQLDA area
(Zoltan Boszormenyi)
</para>
</listitem>
<listitem>
<para>
Allow <literal>AT</> option in <application>ecpg</>
<literal>DEALLOCATE</> statements (Michael Meskes)
</para>
<para>
The infrastructure to support this has been there for awhile, but
through an oversight there was still an error check rejecting the case.
</para>
</listitem>
<listitem>
<para>
Do not use the variable name when defining a varchar structure in ecpg
(Michael Meskes)
</para>
</listitem>
<listitem>
<para>
Fix <filename>contrib/auto_explain</>'s JSON output mode to produce
valid JSON (Andrew Dunstan)
</para>
<para>
The output used brackets at the top level, when it should have used
braces.
</para>
</listitem>
<listitem>
<para>
Fix error in <filename>contrib/intarray</>'s <literal>int[] &
int[]</> operator (Guillaume Lelarge)
</para>
<para>
If the smallest integer the two input arrays have in common is 1,
and there are smaller values in either array, then 1 would be
incorrectly omitted from the result.
</para>
</listitem>
<listitem>
<para>
Fix error detection in <filename>contrib/pgcrypto</>'s
<function>encrypt_iv()</> and <function>decrypt_iv()</>
(Marko Kreen)
</para>
<para>
These functions failed to report certain types of invalid-input errors,
and would instead return random garbage values for incorrect input.
</para>
</listitem>
<listitem>
<para>
Fix one-byte buffer overrun in <filename>contrib/test_parser</>
(Paul Guyot)
</para>
<para>
The code would try to read one more byte than it should, which would
crash in corner cases.
Since <filename>contrib/test_parser</> is only example code, this is
not a security issue in itself, but bad example code is still bad.
</para>
</listitem>
<listitem>
<para>
Use <function>__sync_lock_test_and_set()</> for spinlocks on ARM, if
available (Martin Pitt)
</para>
<para>
This function replaces our previous use of the <literal>SWPB</>
instruction, which is deprecated and not available on ARMv6 and later.
Reports suggest that the old code doesn't fail in an obvious way on
recent ARM boards, but simply doesn't interlock concurrent accesses,
leading to bizarre failures in multiprocess operation.
</para>
</listitem>
<listitem>
<para>
Use <option>-fexcess-precision=standard</> option when building with
gcc versions that accept it (Andrew Dunstan)
</para>
<para>
This prevents assorted scenarios wherein recent versions of gcc will
produce creative results.
</para>
</listitem>
<listitem>
<para>
Allow use of threaded Python on FreeBSD (Chris Rees)
</para>
<para>
Our configure script previously believed that this combination wouldn't
work; but FreeBSD fixed the problem, so remove that error check.
</para>
</listitem>
<listitem>
<para>
Allow MinGW builds to use standardly-named OpenSSL libraries
(Tomasz Ostrowski)
</para>
</listitem>
</itemizedlist>
</sect2>
</sect1>
<sect1 id="release-9-1-2">
<title>Release 9.1.2</title>
<note>
<title>Release Date</title>
<simpara>2011-12-05</simpara>
</note>
<para>
This release contains a variety of fixes from 9.1.1.
For information about new features in the 9.1 major release, see
<xref linkend="release-9-1">.
</para>
<sect2>
<title>Migration to Version 9.1.2</title>
<para>
A dump/restore is not required for those running 9.1.X.
</para>
<para>
However, a longstanding error was discovered in the definition of the
<literal>information_schema.referential_constraints</> view. If you
rely on correct results from that view, you should replace its
definition as explained in the first changelog item below.
</para>
<para>
Also, if you use the <type>citext</> data type, and you upgraded
from a previous major release by running <application>pg_upgrade</>,
you should run <literal>CREATE EXTENSION citext FROM unpackaged</>
to avoid collation-related failures in <type>citext</> operations.
The same is necessary if you restore a dump from a pre-9.1 database
that contains an instance of the <type>citext</> data type.
If you've already run the <command>CREATE EXTENSION</> command before
upgrading to 9.1.2, you will instead need to do manual catalog updates
as explained in the second changelog item.
</para>
</sect2>
<sect2>
<title>Changes</title>
<itemizedlist>
<listitem>
<para>
Fix bugs in <literal>information_schema.referential_constraints</> view
(Tom Lane)
</para>
<para>
This view was being insufficiently careful about matching the
foreign-key constraint to the depended-on primary or unique key
constraint. That could result in failure to show a foreign key
constraint at all, or showing it multiple times, or claiming that it
depends on a different constraint than the one it really does.
</para>
<para>
Since the view definition is installed by <application>initdb</>,
merely upgrading will not fix the problem. If you need to fix this
in an existing installation, you can (as a superuser) drop the
<literal>information_schema</> schema then re-create it by sourcing
<filename><replaceable>SHAREDIR</>/information_schema.sql</filename>.
(Run <literal>pg_config --sharedir</> if you're uncertain where
<replaceable>SHAREDIR</> is.) This must be repeated in each database
to be fixed.
</para>
</listitem>
<listitem>
<para>
Make <filename>contrib/citext</>'s upgrade script fix collations of
<type>citext</> columns and indexes (Tom Lane)
</para>
<para>
Existing <type>citext</> columns and indexes aren't correctly marked as
being of a collatable data type during <application>pg_upgrade</> from
a pre-9.1 server, or when a pre-9.1 dump containing the <type>citext</>
type is loaded into a 9.1 server.
That leads to operations on these columns failing with errors
such as <quote>could not determine which collation to use for string
comparison</>. This change allows them to be fixed by the same
script that upgrades the <type>citext</> module into a proper 9.1
extension during <literal>CREATE EXTENSION citext FROM unpackaged</>.
</para>
<para>
If you have a previously-upgraded database that is suffering from this
problem, and you already ran the <command>CREATE EXTENSION</> command,
you can manually run (as superuser) the <command>UPDATE</> commands
found at the end of
<filename><replaceable>SHAREDIR</>/extension/citext--unpackaged--1.0.sql</filename>.
(Run <literal>pg_config --sharedir</> if you're uncertain where
<replaceable>SHAREDIR</> is.)
There is no harm in doing this again if unsure.
</para>
</listitem>
<listitem>
<para>
Fix possible crash during <command>UPDATE</> or <command>DELETE</> that
joins to the output of a scalar-returning function (Tom Lane)
</para>
<para>
A crash could only occur if the target row had been concurrently
updated, so this problem surfaced only intermittently.
</para>
</listitem>
<listitem>
<para>
Fix incorrect replay of WAL records for GIN index updates
(Tom Lane)
</para>
<para>
This could result in transiently failing to find index entries after
a crash, or on a hot-standby server. The problem would be repaired
by the next <command>VACUUM</> of the index, however.
</para>
</listitem>
<listitem>
<para>
Fix TOAST-related data corruption during <literal>CREATE TABLE dest AS
SELECT * FROM src</> or <literal>INSERT INTO dest SELECT * FROM src</>
(Tom Lane)
</para>
<para>
If a table has been modified by <command>ALTER TABLE ADD COLUMN</>,
attempts to copy its data verbatim to another table could produce
corrupt results in certain corner cases.
The problem can only manifest in this precise form in 8.4 and later,
but we patched earlier versions as well in case there are other code
paths that could trigger the same bug.
</para>
</listitem>
<listitem>
<para>
Fix possible failures during hot standby startup (Simon Riggs)
</para>
</listitem>
<listitem>
<para>
Start hot standby faster when initial snapshot is incomplete
(Simon Riggs)
</para>
</listitem>
<listitem>
<para>
Fix race condition during toast table access from stale syscache entries
(Tom Lane)
</para>
<para>
The typical symptom was transient errors like <quote>missing chunk
number 0 for toast value NNNNN in pg_toast_2619</>, where the cited
toast table would always belong to a system catalog.
</para>
</listitem>
<listitem>
<para>
Track dependencies of functions on items used in parameter default
expressions (Tom Lane)
</para>
<para>
Previously, a referenced object could be dropped without having dropped
or modified the function, leading to misbehavior when the function was
used. Note that merely installing this update will not fix the missing
dependency entries; to do that, you'd need to <command>CREATE OR
REPLACE</> each such function afterwards. If you have functions whose
defaults depend on non-built-in objects, doing so is recommended.
</para>
</listitem>
<listitem>
<para>
Fix incorrect management of placeholder variables in nestloop joins
(Tom Lane)
</para>
<para>
This bug is known to lead to <quote>variable not found in subplan target
list</> planner errors, and could possibly result in wrong query output
when outer joins are involved.
</para>
</listitem>
<listitem>
<para>
Fix window functions that sort by expressions involving aggregates
(Tom Lane)
</para>
<para>
Previously these could fail with <quote>could not find pathkey item to
sort</> planner errors.
</para>
</listitem>
<listitem>
<para>
Fix <quote>MergeAppend child's targetlist doesn't match MergeAppend</>
planner errors (Tom Lane)
</para>
</listitem>
<listitem>
<para>
Fix index matching for operators with both collatable and noncollatable
inputs (Tom Lane)
</para>
<para>
In 9.1.0, an indexable operator that has a non-collatable left-hand
input type and a collatable right-hand input type would not be
recognized as matching the left-hand column's index. An example is
the <type>hstore</> <literal>?</> <type>text</> operator.
</para>
</listitem>
<listitem>
<para>
Allow inlining of set-returning SQL functions with multiple OUT
parameters (Tom Lane)
</para>
</listitem>
<listitem>
<para>
Don't trust deferred-unique indexes for join removal (Tom Lane and Marti
Raudsepp)
</para>
<para>
A deferred uniqueness constraint might not hold intra-transaction,
so assuming that it does could give incorrect query results.
</para>
</listitem>
<listitem>
<para>
Make <function>DatumGetInetP()</> unpack inet datums that have a 1-byte
header, and add a new macro, <function>DatumGetInetPP()</>, that does
not (Heikki Linnakangas)
</para>
<para>
This change affects no core code, but might prevent crashes in add-on
code that expects <function>DatumGetInetP()</> to produce an unpacked
datum as per usual convention.
</para>
</listitem>
<listitem>
<para>
Improve locale support in <type>money</> type's input and output
(Tom Lane)
</para>
<para>
Aside from not supporting all standard
<link linkend="guc-lc-monetary"><varname>lc_monetary</></link>
formatting options, the input and output functions were inconsistent,
meaning there were locales in which dumped <type>money</> values could
not be re-read.
</para>
</listitem>
<listitem>
<para>
Don't let <link
linkend="guc-transform-null-equals"><varname>transform_null_equals</></link>
affect <literal>CASE foo WHEN NULL ...</> constructs
(Heikki Linnakangas)
</para>
<para>
<varname>transform_null_equals</> is only supposed to affect
<literal>foo = NULL</> expressions written directly by the user, not
equality checks generated internally by this form of <literal>CASE</>.
</para>
</listitem>
<listitem>
<para>
Change foreign-key trigger creation order to better support
self-referential foreign keys (Tom Lane)
</para>
<para>
For a cascading foreign key that references its own table, a row update
will fire both the <literal>ON UPDATE</> trigger and the
<literal>CHECK</> trigger as one event. The <literal>ON UPDATE</>
trigger must execute first, else the <literal>CHECK</> will check a
non-final state of the row and possibly throw an inappropriate error.
However, the firing order of these triggers is determined by their
names, which generally sort in creation order since the triggers have
auto-generated names following the convention
<quote>RI_ConstraintTrigger_NNNN</>. A proper fix would require
modifying that convention, which we will do in 9.2, but it seems risky
to change it in existing releases. So this patch just changes the
creation order of the triggers. Users encountering this type of error
should drop and re-create the foreign key constraint to get its
triggers into the right order.
</para>
</listitem>
<listitem>
<para>
Fix <literal>IF EXISTS</> to work correctly in <command>DROP OPERATOR
FAMILY</> (Robert Haas)
</para>
</listitem>
<listitem>
<para>
Disallow dropping of an extension from within its own script
(Tom Lane)
</para>
<para>
This prevents odd behavior in case of incorrect management of extension
dependencies.
</para>
</listitem>
<listitem>
<para>
Don't mark auto-generated types as extension members (Robert Haas)
</para>
<para>
Relation rowtypes and automatically-generated array types do not need to
have their own extension membership entries in <structname>pg_depend</>,
and creating such entries complicates matters for extension upgrades.
</para>
</listitem>
<listitem>
<para>
Cope with invalid pre-existing <varname>search_path</> settings during
<command>CREATE EXTENSION</> (Tom Lane)
</para>
</listitem>
<listitem>
<para>
Avoid floating-point underflow while tracking buffer allocation rate
(Greg Matthews)
</para>
<para>
While harmless in itself, on certain platforms this would result in
annoying kernel log messages.
</para>
</listitem>
<listitem>
<para>
Prevent autovacuum transactions from running in serializable mode
(Tom Lane)
</para>
<para>
Autovacuum formerly used the cluster-wide default transaction isolation
level, but there is no need for it to use anything higher than READ
COMMITTED, and using SERIALIZABLE could result in unnecessary delays
for other processes.
</para>
</listitem>
<listitem>
<para>
Ensure walsender processes respond promptly to <systemitem>SIGTERM</>
(Magnus Hagander)
</para>
</listitem>
<listitem>
<para>
Exclude <filename>postmaster.opts</> from base backups
(Magnus Hagander)
</para>
</listitem>
<listitem>
<para>
Preserve configuration file name and line number values when starting
child processes under Windows (Tom Lane)
</para>
<para>
Formerly, these would not be displayed correctly in the
<structname>pg_settings</> view.
</para>
</listitem>
<listitem>
<para>
Fix incorrect field alignment in <application>ecpg</>'s SQLDA area
(Zoltan Boszormenyi)
</para>
</listitem>
<listitem>
<para>
Preserve blank lines within commands in <application>psql</>'s command
history (Robert Haas)
</para>
<para>
The former behavior could cause problems if an empty line was removed
from within a string literal, for example.
</para>
</listitem>
<listitem>
<para>
Avoid platform-specific infinite loop in <application>pg_dump</>
(Steve Singer)
</para>
</listitem>
<listitem>
<para>
Fix compression of plain-text output format in <application>pg_dump</>
(Adrian Klaver and Tom Lane)
</para>
<para>
<application>pg_dump</> has historically understood <literal>-Z</> with
no <literal>-F</> switch to mean that it should emit a gzip-compressed
version of its plain text output. Restore that behavior.
</para>
</listitem>
<listitem>
<para>
Fix <application>pg_dump</> to dump user-defined casts between
auto-generated types, such as table rowtypes (Tom Lane)
</para>
</listitem>
<listitem>
<para>
Fix missed quoting of foreign server names in <application>pg_dump</>
(Tom Lane)
</para>
</listitem>
<listitem>
<para>
Assorted fixes for <application>pg_upgrade</> (Bruce Momjian)
</para>
<para>
Handle exclusion constraints correctly, avoid failures on Windows,
don't complain about mismatched toast table names in 8.4 databases.
</para>
</listitem>
<listitem>
<para>
In PL/pgSQL, allow foreign tables to define row types
(Alexander Soudakov)
</para>
</listitem>
<listitem>
<para>
Fix up conversions of PL/Perl functions' results
(Alex Hunsaker and Tom Lane)
</para>
<para>
Restore the pre-9.1 behavior that PL/Perl functions returning
<type>void</> ignore the result value of their last Perl statement;
9.1.0 would throw an error if that statement returned a reference.
Also, make sure it works to return a string value for a composite type,
so long as the string meets the type's input format.
In addition, throw errors for attempts to return Perl arrays or hashes
when the function's declared result type is not an array or composite
type, respectively. (Pre-9.1 versions rather uselessly returned
strings like <literal>ARRAY(0x221a9a0)</> or
<literal>HASH(0x221aa90)</> in such cases.)
</para>
</listitem>
<listitem>
<para>
Ensure PL/Perl strings are always correctly UTF8-encoded
(Amit Khandekar and Alex Hunsaker)
</para>
</listitem>
<listitem>
<para>
Use the preferred version of <application>xsubpp</> to build PL/Perl,
not necessarily the operating system's main copy
(David Wheeler and Alex Hunsaker)
</para>
</listitem>
<listitem>
<para>
Correctly propagate SQLSTATE in PL/Python exceptions
(Mika Eloranta and Jan Urbanski)
</para>
</listitem>
<listitem>
<para>
Do not install PL/Python extension files for Python major versions
other than the one built against (Peter Eisentraut)
</para>
</listitem>
<listitem>
<para>
Change all the <filename>contrib</> extension script files to report
a useful error message if they are fed to <application>psql</>
(Andrew Dunstan and Tom Lane)
</para>
<para>
This should help teach people about the new method of using
<command>CREATE EXTENSION</> to load these files. In most cases,
sourcing the scripts directly would fail anyway, but with
harder-to-interpret messages.
</para>
</listitem>
<listitem>
<para>
Fix incorrect coding in <filename>contrib/dict_int</> and
<filename>contrib/dict_xsyn</> (Tom Lane)
</para>
<para>
Some functions incorrectly assumed that memory returned by
<function>palloc()</> is guaranteed zeroed.
</para>
</listitem>
<listitem>
<para>
Remove <filename>contrib/sepgsql</> tests from the regular regression
test mechanism (Tom Lane)
</para>
<para>
Since these tests require root privileges for setup, they're impractical
to run automatically. Switch over to a manual approach instead, and
provide a testing script to help with that.
</para>
</listitem>
<listitem>
<para>
Fix assorted errors in <filename>contrib/unaccent</>'s configuration
file parsing (Tom Lane)
</para>
</listitem>
<listitem>
<para>
Honor query cancel interrupts promptly in <function>pgstatindex()</>
(Robert Haas)
</para>
</listitem>
<listitem>
<para>
Fix incorrect quoting of log file name in Mac OS X start script
(Sidar Lopez)
</para>
</listitem>
<listitem>
<para>
Revert unintentional enabling of <literal>WAL_DEBUG</> (Robert Haas)
</para>
<para>
Fortunately, as debugging tools go, this one is pretty cheap;
but it's not intended to be enabled by default, so revert.
</para>
</listitem>
<listitem>
<para>
Ensure VPATH builds properly install all server header files
(Peter Eisentraut)
</para>
</listitem>
<listitem>
<para>
Shorten file names reported in verbose error messages (Peter Eisentraut)
</para>
<para>
Regular builds have always reported just the name of the C file
containing the error message call, but VPATH builds formerly
reported an absolute path name.
</para>
</listitem>
<listitem>
<para>
Fix interpretation of Windows timezone names for Central America
(Tom Lane)
</para>
<para>
Map <quote>Central America Standard Time</> to <literal>CST6</>, not
<literal>CST6CDT</>, because DST is generally not observed anywhere in
Central America.
</para>
</listitem>
<listitem>
<para>
Update time zone data files to <application>tzdata</> release 2011n
for DST law changes in Brazil, Cuba, Fiji, Palestine, Russia, and Samoa;
also historical corrections for Alaska and British East Africa.
</para>
</listitem>
</itemizedlist>
</sect2>
</sect1>
<sect1 id="release-9-1-1">
<title>Release 9.1.1</title>
<note>
<title>Release Date</title>
<simpara>2011-09-26</simpara>
</note>
<para>
This release contains a small number of fixes from 9.1.0.
For information about new features in the 9.1 major release, see
<xref linkend="release-9-1">.
</para>
<sect2>
<title>Migration to Version 9.1.1</title>
<para>
A dump/restore is not required for those running 9.1.X.
</para>
</sect2>
<sect2>
<title>Changes</title>
<itemizedlist>
<listitem>
<para>
Make <function>pg_options_to_table</> return NULL for an option with no
value (Tom Lane)
</para>
<para>
Previously such cases would result in a server crash.
</para>
</listitem>
<listitem>
<para>
Fix memory leak at end of a GiST index scan (Tom Lane)
</para>
<para>
Commands that perform many separate GiST index scans, such as
verification of a new GiST-based exclusion constraint on a table
already containing many rows, could transiently require large amounts of
memory due to this leak.
</para>
</listitem>
<listitem>
<para>
Fix explicit reference to <literal>pg_temp</> schema in <command>CREATE
TEMPORARY TABLE</> (Robert Haas)
</para>
<para>
This used to be allowed, but failed in 9.1.0.
</para>
</listitem>
</itemizedlist>
</sect2>
</sect1>
<sect1 id="release-9-1">
<title>Release 9.1</title>
<note>
<title>Release Date</title>
<simpara>2011-09-12</simpara>
</note>
<sect2>
<title>Overview</title>
<para>
This release shows <productname>PostgreSQL</> moving beyond the
traditional relational-database feature set with new, ground-breaking
functionality that is unique to <productname>PostgreSQL</>.
The streaming replication feature introduced in release 9.0 is
significantly enhanced by adding a synchronous-replication option,
streaming backups, and monitoring improvements.
Major enhancements include:
</para>
<itemizedlist>
<!-- This list duplicates items below, but without authors or details-->
<listitem>
<para>
Allow <link linkend="synchronous-replication">synchronous
replication</link>
</para>
</listitem>
<listitem>
<para>
Add support for <link linkend="SQL-CREATEFOREIGNTABLE">foreign
tables</link>
</para>
</listitem>
<listitem>
<para>
Add per-column <link
linkend="collation">collation</link> support
</para>
</listitem>
<listitem>
<para>
Add <link linkend="extend-extensions">extensions</link> which
simplify packaging of additions to <productname>PostgreSQL</>
</para>
</listitem>
<listitem>
<para>
Add a true <link
linkend="xact-serializable">serializable isolation level</link>
</para>
</listitem>
<listitem>
<para>
Support unlogged tables using the <literal>UNLOGGED</>
option in <link linkend="SQL-CREATETABLE"><command>CREATE
TABLE</></link>
</para>
</listitem>
<listitem>
<para>
Allow data-modification commands
(<command>INSERT</>/<command>UPDATE</>/<command>DELETE</>) in
<link linkend="queries-with"><literal>WITH</></link> clauses
</para>
</listitem>
<listitem>
<para>
Add nearest-neighbor (order-by-operator) searching to <link
linkend="GiST"><acronym>GiST</> indexes</link>
</para>
</listitem>
<listitem>
<para>
Add a <link linkend="SQL-SECURITY-LABEL"><command>SECURITY
LABEL</></link> command and support for
<link linkend="sepgsql"><acronym>SELinux</> permissions control</link>
</para>
</listitem>
<listitem>
<para>
Update the <link linkend="plpython">PL/Python</link> server-side
language
</para>
</listitem>
</itemizedlist>
<para>
The above items are explained in more detail in the sections below.
</para>
</sect2>
<sect2>
<title>Migration to Version 9.1</title>
<para>
A dump/restore using <application>pg_dump</application>,
or use of <application>pg_upgrade</application>, is required
for those wishing to migrate data from any previous
release.
</para>
<para>
Version 9.1 contains a number of changes that may affect compatibility
with previous releases. Observe the following incompatibilities:
</para>
<sect3>
<title>Strings</title>
<itemizedlist>
<listitem>
<para>
Change the default value of <link
linkend="guc-standard-conforming-strings"><varname>standard_conforming_strings</></link>
to on (Robert Haas)
</para>
<para>
By default, backslashes are now ordinary characters in string literals,
not escape characters. This change removes a long-standing
incompatibility with the SQL standard. <link
linkend="guc-escape-string-warning"><varname>escape_string_warning</></link>
has produced warnings about this usage for years. <literal>E''</>
strings are the proper way to embed backslash escapes in strings and are
unaffected by this change.
</para>
<warning>
<para>
This change can break applications that are not expecting it and
do their own string escaping according to the old rules. The
consequences could be as severe as introducing SQL-injection security
holes. Be sure to test applications that are exposed to untrusted
input, to ensure that they correctly handle single quotes and
backslashes in text strings.
</para>
</warning>
</listitem>
</itemizedlist>
</sect3>
<sect3>
<title>Casting</title>
<itemizedlist>
<listitem>
<para>
Disallow function-style and attribute-style data type casts for
composite types (Tom Lane)
</para>
<para>
For example, disallow
<literal><replaceable>composite_value</>.text</literal> and
<literal>text(<replaceable>composite_value</>)</literal>.
Unintentional uses of this syntax have frequently resulted in bug
reports; although it was not a bug, it seems better to go back to
rejecting such expressions.
The <literal>CAST</> and <literal>::</> syntaxes are still available
for use when a cast of an entire composite value is actually intended.
</para>
</listitem>
<listitem>
<para>
Tighten casting checks for domains based on arrays (Tom Lane)
</para>
<para>
When a domain is based on an array type, it is allowed to <quote>look
through</> the domain type to access the array elements, including
subscripting the domain value to fetch or assign an element.
Assignment to an element of such a domain value, for instance via
<literal>UPDATE ... SET domaincol[5] = ...</>, will now result in
rechecking the domain type's constraints, whereas before the checks
were skipped.
</para>
</listitem>
</itemizedlist>
</sect3>
<sect3>
<title>Arrays</title>
<itemizedlist>
<listitem>
<para>
Change <link
linkend="array-functions-table"><function>string_to_array()</></link>
to return an empty array for a zero-length string (Pavel
Stehule)
</para>
<para>
Previously this returned a null value.
</para>
</listitem>
<listitem>
<para>
Change <link
linkend="array-functions-table"><function>string_to_array()</></link>
so a <literal>NULL</> separator splits the string into characters
(Pavel Stehule)
</para>
<para>
Previously this returned a null value.
</para>
</listitem>
</itemizedlist>
</sect3>
<sect3>
<title>Object Modification</title>
<itemizedlist>
<listitem>
<para>
Fix improper checks for before/after triggers (Tom Lane)
</para>
<para>
Triggers can now be fired in three cases: <literal>BEFORE</>,
<literal>AFTER</>, or <literal>INSTEAD OF</> some action.
Trigger function authors should verify that their logic behaves
sanely in all three cases.
</para>
</listitem>
<listitem>
<para>
Require superuser or <literal>CREATEROLE</> permissions in order to
set comments on roles (Tom Lane)
</para>
</listitem>
</itemizedlist>
</sect3>
<sect3>
<title>Server Settings</title>
<itemizedlist>
<listitem>
<para>
Change <link
linkend="functions-recovery-info-table"><function>pg_last_xlog_receive_location()</></link>
so it never moves backwards (Fujii Masao)
</para>
<para>
Previously, the value of <function>pg_last_xlog_receive_location()</>
could move backward when streaming replication is restarted.
</para>
</listitem>
<listitem>
<para>
Have logging of replication connections honor <link
linkend="guc-log-connections"><varname>log_connections</></link>
(Magnus Hagander)
</para>
<para>
Previously, replication connections were always logged.
</para>
</listitem>
</itemizedlist>
</sect3>
<sect3>
<title><link linkend="plpgsql">PL/pgSQL</link> Server-Side Language</title>
<itemizedlist>
<listitem>
<para>
Change PL/pgSQL's <literal>RAISE</> command without parameters
to be catchable by the attached exception block (Piyush Newe)
</para>
<para>
Previously <literal>RAISE</> in a code block was always scoped to
an attached exception block, so it was uncatchable at the same
scope.
</para>
</listitem>
<listitem>
<para>
Adjust PL/pgSQL's error line numbering code to be consistent
with other PLs (Pavel Stehule)
</para>
<para>
Previously, PL/pgSQL would ignore (not count) an empty line at the
start of the function body. Since this was inconsistent with all
other languages, the special case was removed.
</para>
</listitem>
<listitem>
<para>
Make PL/pgSQL complain about conflicting IN and OUT parameter names
(Tom Lane)
</para>
<para>
Formerly, the collision was not detected, and the name would just
silently refer to only the OUT parameter.
</para>
</listitem>
<listitem>
<para>
Type modifiers of PL/pgSQL variables are now visible to the SQL parser
(Tom Lane)
</para>
<para>
A type modifier (such as a varchar length limit) attached to a PL/pgSQL
variable was formerly enforced during assignments, but was ignored for
all other purposes. Such variables will now behave more like table
columns declared with the same modifier. This is not expected to make
any visible difference in most cases, but it could result in subtle
changes for some SQL commands issued by PL/pgSQL functions.
</para>
</listitem>
</itemizedlist>
</sect3>
<sect3>
<title>Contrib</title>
<itemizedlist>
<listitem>
<para>
All contrib modules are now installed with <link
linkend="SQL-CREATEEXTENSION"><command>CREATE EXTENSION</></link>
rather than by manually invoking their SQL scripts
(Dimitri Fontaine, Tom Lane)
</para>
<para>
To update an existing database containing the 9.0 version of a contrib
module, use <literal>CREATE EXTENSION ... FROM unpackaged</literal>
to wrap the existing contrib module's objects into an extension. When
updating from a pre-9.0 version, drop the contrib module's objects
using its old uninstall script, then use <literal>CREATE EXTENSION</>.
</para>
</listitem>
</itemizedlist>
</sect3>
<sect3>
<title>Other Incompatibilities</title>
<itemizedlist>
<listitem>
<para>
Make <link
linkend="monitoring-stats-funcs-table"><function>pg_stat_reset()</></link>
reset all database-level statistics (Tomas Vondra)
</para>
<para>
Some <structname>pg_stat_database</> counters were not being reset.
</para>
</listitem>
<listitem>
<para>
Fix some <link
linkend="infoschema-triggers"><structname>information_schema.triggers</></link>
column names to match the new SQL-standard names (Dean Rasheed)
</para>
</listitem>
<listitem>
<para>
Treat <application>ECPG</> cursor names as case-insensitive
(Zoltan Boszormenyi)
</para>
</listitem>
</itemizedlist>
</sect3>
</sect2>
<sect2>
<title>Changes</title>
<para>
Below you will find a detailed account of the changes between
<productname>PostgreSQL</productname> 9.1 and the previous major
release.
</para>
<sect3>
<title>Server</title>
<sect4>
<title>Performance</title>
<itemizedlist>
<listitem>
<para>
Support unlogged tables using the <literal>UNLOGGED</>
option in <link linkend="SQL-CREATETABLE"><command>CREATE
TABLE</></link> (Robert Haas)
</para>
<para>
Such tables provide better update performance than regular tables,
but are not crash-safe: their contents are automatically cleared in
case of a server crash. Their contents do not propagate to
replication slaves, either.
</para>
</listitem>
<listitem>
<para>
Allow <literal>FULL OUTER JOIN</literal> to be implemented as a
hash join, and allow either side of a <literal>LEFT OUTER JOIN</>
or <literal>RIGHT OUTER JOIN</> to be hashed (Tom Lane)
</para>
<para>
Previously <literal>FULL OUTER JOIN</literal> could only be
implemented as a merge join, and <literal>LEFT OUTER JOIN</literal>
and <literal>RIGHT OUTER JOIN</literal> could hash only the nullable
side of the join. These changes provide additional query optimization
possibilities.
</para>
</listitem>
<listitem>
<para>
Merge duplicate fsync requests (Robert Haas, Greg Smith)
</para>
<para>
This greatly improves performance under heavy write loads.
</para>
</listitem>
<listitem>
<para>
Improve performance of <link
linkend="guc-commit-siblings"><varname>commit_siblings</></link>
(Greg Smith)
</para>
<para>
This allows the use of <varname>commit_siblings</varname> with
less overhead.
</para>
</listitem>
<listitem>
<para>
Reduce the memory requirement for large ispell dictionaries
(Pavel Stehule, Tom Lane)
</para>
</listitem>
<listitem>
<para>
Avoid leaving data files open after <quote>blind writes</>
(Alvaro Herrera)
</para>
<para>
This fixes scenarios in which backends might hold files open long
after they were deleted, preventing the kernel from reclaiming
disk space.
</para>
</listitem>
</itemizedlist>
</sect4>
<sect4>
<title>Optimizer</title>
<itemizedlist>
<listitem>
<para>
Allow inheritance table scans to return meaningfully-sorted
results (Greg Stark, Hans-Jurgen Schonig, Robert Haas, Tom Lane)
</para>
<para>
This allows better optimization of queries that use <literal>ORDER
BY</>, <literal>LIMIT</>, or <literal>MIN</>/<literal>MAX</> with
inherited tables.
</para>
</listitem>
<listitem>
<para>
Improve GIN index scan cost estimation (Teodor Sigaev)
</para>
</listitem>
<listitem>
<para>
Improve cost estimation for aggregates and window functions (Tom Lane)
</para>
</listitem>
</itemizedlist>
</sect4>
<sect4>
<title>Authentication</title>
<itemizedlist>
<listitem>
<para>
Support host names and host suffixes
(e.g. <literal>.example.com</>) in <link
linkend="auth-pg-hba-conf"><filename>pg_hba.conf</></link>
(Peter Eisentraut)
</para>
<para>
Previously only host <acronym>IP</> addresses and <acronym>CIDR</>
values were supported.
</para>
</listitem>
<listitem>
<para>
Support the key word <literal>all</> in the host column of <link
linkend="auth-pg-hba-conf"><filename>pg_hba.conf</></link>
(Peter Eisentraut)
</para>
<para>
Previously people used <literal>0.0.0.0/0</> or <literal>::/0</>
for this.
</para>
</listitem>
<listitem>
<para>
Reject <literal>local</> lines in <link
linkend="auth-pg-hba-conf"><filename>pg_hba.conf</></link>
on platforms that don't support Unix-socket connections
(Magnus Hagander)
</para>
<para>
Formerly, such lines were silently ignored, which could be surprising.
This makes the behavior more like other unsupported cases.
</para>
</listitem>
<listitem>
<para>
Allow <link linkend="gssapi-auth"><acronym>GSSAPI</></link>
to be used to authenticate to servers via <link
linkend="sspi-auth"><acronym>SSPI</></link> (Christian Ullrich)
</para>
<para>
Specifically this allows Unix-based <acronym>GSSAPI</> clients
to do <acronym>SSPI</> authentication with Windows servers.
</para>
</listitem>
<listitem>
<para>
<link linkend="auth-ident"><literal>ident</literal></link>
authentication over local sockets is now known as
<link linkend="auth-peer"><literal>peer</literal></link>
(Magnus Hagander)
</para>
<para>
The old term is still accepted for backward compatibility, but since
the two methods are fundamentally different, it seemed better to adopt
different names for them.
</para>
</listitem>
<listitem>
<para>
Rewrite <link linkend="auth-peer"><acronym>peer</></link>
authentication to avoid use of credential control messages (Tom Lane)
</para>
<para>
This change makes the peer authentication code simpler and
better-performing. However, it requires the platform to provide the
<function>getpeereid</> function or an equivalent socket operation.
So far as is known, the only platform for which peer authentication
worked before and now will not is pre-5.0 NetBSD.
</para>
</listitem>
</itemizedlist>
</sect4>
<sect4>
<title>Monitoring</title>
<itemizedlist>
<listitem>
<para>
Add details to the logging of restartpoints and checkpoints,
which is controlled by <link
linkend="guc-log-checkpoints"><varname>log_checkpoints</></link>
(Fujii Masao, Greg Smith)
</para>
<para>
New details include <acronym>WAL</> file and sync activity.
</para>
</listitem>
<listitem>
<para>
Add <link
linkend="guc-log-file-mode"><varname>log_file_mode</></link>
which controls the permissions on log files created by the
logging collector (Martin Pihlak)
</para>
</listitem>
<listitem>
<para>
Reduce the default maximum line length for <application>syslog</>
logging to 900 bytes plus prefixes (Noah Misch)
</para>
<para>
This avoids truncation of long log lines on syslog implementations
that have a 1KB length limit, rather than the more common 2KB.
</para>
</listitem>
</itemizedlist>
</sect4>
<sect4>
<title>Statistical Views</title>
<itemizedlist>
<listitem>
<para>
Add <structfield>client_hostname</structfield> column to <link
linkend="monitoring-stats-views-table"><structname>pg_stat_activity</></link>
(Peter Eisentraut)
</para>
<para>
Previously only the client address was reported.
</para>
</listitem>
<listitem>
<para>
Add <link
linkend="monitoring-stats-views-table"><structname>pg_stat_xact_*</></link>
statistics functions and views (Joel Jacobson)
</para>
<para>
These are like the database-wide statistics counter views, but
reflect counts for only the current transaction.
</para>
</listitem>
<listitem>
<para>
Add time of last reset in database-level and background writer
statistics views (Tomas Vondra)
</para>
</listitem>
<listitem>
<para>
Add columns showing the number of vacuum and analyze operations
in <link
linkend="monitoring-stats-views-table"><structname>pg_stat_*_tables</></link>
views (Magnus Hagander)
</para>
</listitem>
<listitem>
<para>
Add <structfield>buffers_backend_fsync</> column to <link
linkend="monitoring-stats-views-table"><structname>pg_stat_bgwriter</></link>
(Greg Smith)
</para>
<para>
This new column counts the number of times a backend fsyncs a
buffer.
</para>
</listitem>
</itemizedlist>
</sect4>
<sect4>
<title>Server Settings</title>
<itemizedlist>
<listitem>
<para>
Provide auto-tuning of <link
linkend="guc-wal-buffers"><varname>wal_buffers</></link> (Greg
Smith)
</para>
<para>
By default, the value of <varname>wal_buffers</> is now chosen
automatically based on the value of <varname>shared_buffers</>.
</para>
</listitem>
<listitem>
<para>
Increase the maximum values for
<link linkend="guc-deadlock-timeout"><varname>deadlock_timeout</varname></link>,
<link linkend="guc-log-min-duration-statement"><varname>log_min_duration_statement</varname></link>, and
<link linkend="guc-log-autovacuum-min-duration"><varname>log_autovacuum_min_duration</varname></link>
(Peter Eisentraut)
</para>
<para>
The maximum value for each of these parameters was previously
only about 35 minutes. Much larger values are now allowed.
</para>
</listitem>
</itemizedlist>
</sect4>
</sect3>
<sect3>
<title>Replication and Recovery</title>
<sect4>
<title>Streaming Replication and Continuous Archiving</title>
<itemizedlist>
<listitem>
<para>
Allow <link linkend="synchronous-replication">synchronous
replication</link> (Simon Riggs, Fujii Masao)
</para>
<para>
This allows the primary server to wait for a standby to write a
transaction's information to disk before acknowledging the commit.
One standby at a time can take the role of the synchronous standby,
as controlled by the
<link linkend="guc-synchronous-standby-names"><varname>synchronous_standby_names</varname></link>
setting. Synchronous replication can be enabled or disabled on a
per-transaction basis using the
<link linkend="guc-synchronous-commit"><varname>synchronous_commit</></link>
setting.
</para>
</listitem>
<listitem>
<para>
Add protocol support for sending file system backups to standby servers
using the streaming replication network connection (Magnus Hagander,
Heikki Linnakangas)
</para>
<para>
This avoids the requirement of manually transferring a file
system backup when setting up a standby server.
</para>
</listitem>
<listitem>
<para>
Add
<varname>replication_timeout</>
setting (Fujii Masao, Heikki Linnakangas)
</para>
<para>
Replication connections that are idle for more than the
<varname>replication_timeout</> interval will be terminated
automatically. Formerly, a failed connection was typically not
detected until the TCP timeout elapsed, which is inconveniently
long in many situations.
</para>
</listitem>
<listitem>
<para>
Add command-line tool <link
linkend="app-pgbasebackup"><application>pg_basebackup</></link>
for creating a new standby server or database backup (Magnus
Hagander)
</para>
</listitem>
<listitem>
<para>
Add a <link linkend="SQL-CREATEROLE">replication permission</link>
for roles (Magnus Hagander)
</para>
<para>
This is a read-only permission used for streaming replication.
It allows a non-superuser role to be used for replication connections.
Previously only superusers could initiate replication
connections; superusers still have this permission by default.
</para>
</listitem>
</itemizedlist>
</sect4>
<sect4>
<title>Replication Monitoring</title>
<itemizedlist>
<listitem>
<para>
Add system view <link
linkend="monitoring-stats-views-table"><structname>pg_stat_replication</></link>
which displays activity of <acronym>WAL</> sender processes (Itagaki
Takahiro, Simon Riggs)
</para>
<para>
This reports the status of all connected standby servers.
</para>
</listitem>
<listitem>
<para>
Add monitoring function <link
linkend="functions-recovery-info-table"><function>pg_last_xact_replay_timestamp()</></link>
(Fujii Masao)
</para>
<para>
This returns the time at which the primary generated the most
recent commit or abort record applied on the standby.
</para>
</listitem>
</itemizedlist>
</sect4>
<sect4>
<title>Hot Standby</title>
<itemizedlist>
<listitem>
<para>
Add configuration parameter <link
linkend="guc-hot-standby-feedback"><varname>hot_standby_feedback</></link>
to enable standbys to postpone cleanup of old row versions on the
primary (Simon Riggs)
</para>
<para>
This helps avoid canceling long-running queries on the standby.
</para>
</listitem>
<listitem>
<para>
Add the <link
linkend="monitoring-stats-views-table"><structname>pg_stat_database_conflicts</></link>
system view to show queries that have been canceled and the
reason (Magnus Hagander)
</para>
<para>
Cancellations can occur because of dropped tablespaces, lock
timeouts, old snapshots, pinned buffers, and deadlocks.
</para>
</listitem>
<listitem>
<para>
Add a <structfield>conflicts</> count to <link
linkend="monitoring-stats-views-table"><structname>pg_stat_database</></link>
(Magnus Hagander)
</para>
<para>
This is the number of conflicts that occurred in the database.
</para>
</listitem>
<listitem>
<para>
Increase the maximum values for
<link linkend="guc-max-standby-archive-delay"><varname>max_standby_archive_delay</varname></link> and
<link linkend="guc-max-standby-streaming-delay"><varname>max_standby_streaming_delay</varname></link>
</para>
<para>
The maximum value for each of these parameters was previously
only about 35 minutes. Much larger values are now allowed.
</para>
</listitem>
<listitem>
<para>
Add <link
linkend="errcodes-table"><literal>ERRCODE_T_R_DATABASE_DROPPED</></link>
error code to report recovery conflicts due to dropped databases
(Tatsuo Ishii)
</para>
<para>
This is useful for connection pooling software.
</para>
</listitem>
</itemizedlist>
</sect4>
<sect4>
<title>Recovery Control</title>
<itemizedlist>
<listitem>
<para>
Add functions to control streaming replication replay (Simon Riggs)
</para>
<para>
The new functions are <link
linkend="functions-recovery-control-table"><function>pg_xlog_replay_pause()</></link>,
<link
linkend="functions-recovery-control-table"><function>pg_xlog_replay_resume()</></link>,
and the status function <link
linkend="functions-recovery-control-table"><function>pg_is_xlog_replay_paused()</></link>.
</para>
</listitem>
<listitem>
<para>
Add <filename>recovery.conf</> setting <link
linkend="pause-at-recovery-target"><varname>pause_at_recovery_target</></link>
to pause recovery at target (Simon Riggs)
</para>
<para>
This allows a recovery server to be queried to check whether
the recovery point is the one desired.
</para>
</listitem>
<listitem>
<para>
Add the ability to create named restore points using <link
linkend="functions-admin-backup-table"><function>pg_create_restore_point()</></link>
(Jaime Casanova)
</para>
<para>
These named restore points can be specified as recovery
targets using the new <filename>recovery.conf</> setting
<link linkend="recovery-target-name"><varname>recovery_target_name</></link>.
</para>
</listitem>
<listitem>
<para>
Allow standby recovery to switch to a new timeline automatically
(Heikki Linnakangas)
</para>
<para>
Now standby servers scan the archive directory for new
timelines periodically.
</para>
</listitem>
<listitem>
<para>
Add <link
linkend="guc-restart-after-crash"><varname>restart_after_crash</></link>
setting which disables automatic server restart after a backend
crash (Robert Haas)
</para>
<para>
This allows external cluster management software to control
whether the database server restarts or not.
</para>
</listitem>
<listitem>
<para>
Allow <link
linkend="recovery-config"><filename>recovery.conf</></link>
to use the same quoting behavior as <filename>postgresql.conf</>
(Dimitri Fontaine)
</para>
<para>
Previously all values had to be quoted.
</para>
</listitem>
</itemizedlist>
</sect4>
</sect3>
<sect3>
<title>Queries</title>
<itemizedlist>
<listitem>
<para>
Add a true <link
linkend="xact-serializable">serializable isolation level</link>
(Kevin Grittner, Dan Ports)
</para>
<para>
Previously, asking for serializable isolation guaranteed only that a
single MVCC snapshot would be used for the entire transaction, which
allowed certain documented anomalies. The old snapshot isolation
behavior is still available by requesting the <link
linkend="xact-repeatable-read"><literal>REPEATABLE READ</></link>
isolation level.
</para>
</listitem>
<listitem>
<para>
Allow data-modification commands
(<command>INSERT</>/<command>UPDATE</>/<command>DELETE</>) in
<link linkend="queries-with"><literal>WITH</></link> clauses
(Marko Tiikkaja, Hitoshi Harada)
</para>
<para>
These commands can use <literal>RETURNING</> to pass data up to the
containing query.
</para>
</listitem>
<listitem>
<para>
Allow <link linkend="queries-with"><literal>WITH</></link>
clauses to be attached to <command>INSERT</>, <command>UPDATE</>,
<command>DELETE</> statements (Marko Tiikkaja, Hitoshi Harada)
</para>
</listitem>
<listitem>
<para>
Allow non-<link linkend="queries-group"><literal>GROUP
BY</></link> columns in the query target list when the primary
key is specified in the <literal>GROUP BY</> clause (Peter
Eisentraut)
</para>
<para>
The SQL standard allows this behavior, and
because of the primary key, the result is unambiguous.
</para>
</listitem>
<listitem>
<para>
Allow use of the key word <literal>DISTINCT</> in <link
linkend="queries-union"><literal>UNION</>/<literal>INTERSECT</>/<literal>EXCEPT</></link>
clauses (Tom Lane)
</para>
<para>
<literal>DISTINCT</> is the default behavior so use of this
key word is redundant, but the SQL standard allows it.
</para>
</listitem>
<listitem>
<para>
Fix ordinary queries with rules to use the same snapshot behavior
as <command>EXPLAIN ANALYZE</> (Marko Tiikkaja)
</para>
<para>
Previously <command>EXPLAIN ANALYZE</> used slightly different
snapshot timing for queries involving rules. The
<command>EXPLAIN ANALYZE</> behavior was judged to be more logical.
</para>
</listitem>
</itemizedlist>
<sect4>
<title>Strings</title>
<itemizedlist>
<listitem>
<para>
Add per-column <link
linkend="collation">collation</link> support
(Peter Eisentraut, Tom Lane)
</para>
<para>
Previously collation (the sort ordering of text strings) could only be
chosen at database creation.
Collation can now be set per column, domain, index, or
expression, via the SQL-standard <literal>COLLATE</> clause.
</para>
</listitem>
</itemizedlist>
</sect4>
</sect3>
<sect3>
<title>Object Manipulation</title>
<itemizedlist>
<listitem>
<para>
Add <link linkend="extend-extensions">extensions</link> which
simplify packaging of additions to <productname>PostgreSQL</>
(Dimitri Fontaine, Tom Lane)
</para>
<para>
Extensions are controlled by the new <link
linkend="SQL-CREATEEXTENSION"><command>CREATE</></link>/<link
linkend="SQL-ALTEREXTENSION"><command>ALTER</></link>/<link
linkend="SQL-DROPEXTENSION"><command>DROP EXTENSION</></link>
commands. This replaces ad-hoc methods of grouping objects that
are added to a <productname>PostgreSQL</> installation.
</para>
</listitem>
<listitem>
<para>
Add support for <link linkend="SQL-CREATEFOREIGNTABLE">foreign
tables</link> (Shigeru Hanada, Robert Haas, Jan Urbanski,
Heikki Linnakangas)
</para>
<para>
This allows data stored outside the database to be used like
native <productname>PostgreSQL</>-stored data. Foreign tables
are currently read-only, however.
</para>
</listitem>
<listitem>
<para>
Allow new values to be added to an existing enum type via
<link linkend="SQL-ALTERTYPE"><command>ALTER TYPE</></link> (Andrew
Dunstan)
</para>
</listitem>
<listitem>
<para>
Add <link linkend="SQL-ALTERTYPE"><command>ALTER TYPE ...
ADD/DROP/ALTER/RENAME ATTRIBUTE</></link> (Peter Eisentraut)
</para>
<para>
This allows modification of composite types.
</para>
</listitem>
</itemizedlist>
<sect4>
<title><command>ALTER</> Object</title>
<itemizedlist>
<listitem>
<para>
Add <literal>RESTRICT</>/<literal>CASCADE</> to <link
linkend="SQL-ALTERTYPE"><command>ALTER TYPE</></link> operations
on typed tables (Peter Eisentraut)
</para>
<para>
This controls
<literal>ADD</>/<literal>DROP</>/<literal>ALTER</>/<literal>RENAME
ATTRIBUTE</> cascading behavior.
</para>
</listitem>
<listitem>
<para>
Support <literal>ALTER TABLE <replaceable>name</> {OF | NOT OF}
<replaceable>type</></literal>
(Noah Misch)
</para>
<para>
This syntax allows a standalone table to be made into a typed table,
or a typed table to be made standalone.
</para>
</listitem>
<listitem>
<para>
Add support for more object types in <command>ALTER ... SET
SCHEMA</> commands (Dimitri Fontaine)
</para>
<para>
This command is now supported for conversions, operators, operator
classes, operator families, text search configurations, text search
dictionaries, text search parsers, and text search templates.
</para>
</listitem>
</itemizedlist>
</sect4>
<sect4>
<title><link linkend="SQL-CREATETABLE"><command>CREATE/ALTER TABLE</></link></title>
<itemizedlist>
<listitem>
<para>
Add <command>ALTER TABLE ...
ADD UNIQUE/PRIMARY KEY USING INDEX</command>
(Gurjeet Singh)
</para>
<para>
This allows a primary key or unique constraint to be defined using an
existing unique index, including a concurrently created unique index.
</para>
</listitem>
<listitem>
<para>
Allow <command>ALTER TABLE</>
to add foreign keys without validation (Simon Riggs)
</para>
<para>
The new option is called <literal>NOT VALID</>. The constraint's
state can later be modified to <literal>VALIDATED</> and validation
checks performed. Together these allow you to add a foreign key
with minimal impact on read and write operations.
</para>
</listitem>
<listitem>
<para>
Allow <link linkend="SQL-ALTERTABLE"><command>ALTER TABLE
... SET DATA TYPE</command></link> to avoid table rewrites in
appropriate cases (Noah Misch, Robert Haas)
</para>
<para>
For example, converting a <type>varchar</> column to
<type>text</> no longer requires a rewrite of the table.
However, increasing the length constraint on a
<type>varchar</> column still requires a table rewrite.
</para>
</listitem>
<listitem>
<para>
Add <link linkend="SQL-CREATETABLE"><command>CREATE TABLE IF
NOT EXISTS</></link> syntax (Robert Haas)
</para>
<para>
This allows table creation without causing an error if the
table already exists.
</para>
</listitem>
<listitem>
<para>
Fix possible <quote>tuple concurrently updated</quote> error
when two backends attempt to add an inheritance
child to the same table at the same time (Robert Haas)
</para>
<para>
<link linkend="sql-altertable"><command>ALTER TABLE</command></link>
now takes a stronger lock on the parent table, so that the sessions
cannot try to update it simultaneously.
</para>
</listitem>
</itemizedlist>
</sect4>
<sect4>
<title>Object Permissions</title>
<itemizedlist>
<listitem>
<para>
Add a <link linkend="SQL-SECURITY-LABEL"><command>SECURITY
LABEL</></link> command (KaiGai Kohei)
</para>
<para>
This allows security labels to be assigned to objects.
</para>
</listitem>
</itemizedlist>
</sect4>
</sect3>
<sect3>
<title>Utility Operations</title>
<itemizedlist>
<listitem>
<para>
Add transaction-level <link linkend="advisory-locks">advisory
locks</link> (Marko Tiikkaja)
</para>
<para>
These are similar to the existing session-level advisory locks,
but such locks are automatically released at transaction end.
</para>
</listitem>
<listitem>
<para>
Make <link linkend="SQL-TRUNCATE"><command>TRUNCATE ... RESTART
IDENTITY</></link> restart sequences transactionally (Steve
Singer)
</para>
<para>
Previously the counter could have been left out of sync if a
backend crashed between the on-commit truncation activity and
commit completion.
</para>
</listitem>
</itemizedlist>
<sect4>
<title><link linkend="SQL-COPY"><command>COPY</></link></title>
<itemizedlist>
<listitem>
<para>
Add <literal>ENCODING</> option to <link
linkend="SQL-COPY"><command>COPY TO/FROM</></link> (Hitoshi
Harada, Itagaki Takahiro)
</para>
<para>
This allows the encoding of the <command>COPY</> file to be
specified separately from client encoding.
</para>
</listitem>
<listitem>
<para>
Add bidirectional <link linkend="SQL-COPY"><command>COPY</></link>
protocol support (Fujii Masao)
</para>
<para>
This is currently only used by streaming replication.
</para>
</listitem>
</itemizedlist>
</sect4>
<sect4>
<title><link linkend="SQL-EXPLAIN"><command>EXPLAIN</></link></title>
<itemizedlist>
<listitem>
<para>
Make <command>EXPLAIN VERBOSE</> show the function call expression
in a <literal>FunctionScan</literal> node (Tom Lane)
</para>
</listitem>
</itemizedlist>
</sect4>
<sect4>
<title><link linkend="SQL-VACUUM"><command>VACUUM</></link></title>
<itemizedlist>
<listitem>
<para>
Add additional details to the output of <link
linkend="SQL-VACUUM"><command>VACUUM FULL VERBOSE</></link>
and <link linkend="SQL-CLUSTER"><command>CLUSTER VERBOSE</></link>
(Itagaki Takahiro)
</para>
<para>
New information includes the live and dead tuple count and
whether <command>CLUSTER</> is using an index to rebuild.
</para>
</listitem>
<listitem>
<para>
Prevent <link linkend="autovacuum">autovacuum</link> from
waiting if it cannot acquire a table lock (Robert Haas)
</para>
<para>
It will try to vacuum that table later.
</para>
</listitem>
</itemizedlist>
</sect4>
<sect4>
<title><link linkend="SQL-CLUSTER"><command>CLUSTER</></link></title>
<itemizedlist>
<listitem>
<para>
Allow <command>CLUSTER</> to sort the table rather than scanning
the index when it seems likely to be cheaper (Leonardo Francalanci)
</para>
</listitem>
</itemizedlist>
</sect4>
<sect4>
<title>Indexes</title>
<itemizedlist>
<listitem>
<para>
Add nearest-neighbor (order-by-operator) searching to <link
linkend="GiST"><acronym>GiST</> indexes</link> (Teodor Sigaev, Tom Lane)
</para>
<para>
This allows <acronym>GiST</> indexes to quickly return the
<replaceable>N</> closest values in a query with <literal>LIMIT</>.
For example
<programlisting><![CDATA[
SELECT * FROM places ORDER BY location <-> point '(101,456)' LIMIT 10;
]]>
</programlisting>
finds the ten places closest to a given target point.
</para>
</listitem>
<listitem>
<para>
Allow <link linkend="GIN"><acronym>GIN</> indexes</link> to index null
and empty values (Tom Lane)
</para>
<para>
This allows full <acronym>GIN</> index scans, and fixes various
corner cases in which GIN scans would fail.
</para>
</listitem>
<listitem>
<para>
Allow <link linkend="GIN"><acronym>GIN</> indexes</link> to
better recognize duplicate search entries (Tom Lane)
</para>
<para>
This reduces the cost of index scans, especially in cases where
it avoids unnecessary full index scans.
</para>
</listitem>
<listitem>
<para>
Fix <link linkend="GiST"><acronym>GiST</> indexes</link> to be fully
crash-safe (Heikki Linnakangas)
</para>
<para>
Previously there were rare cases where a <command>REINDEX</>
would be required (you would be informed).
</para>
</listitem>
</itemizedlist>
</sect4>
</sect3>
<sect3>
<title>Data Types</title>
<itemizedlist>
<listitem>
<para>
Allow <type>numeric</> to use a more compact, two-byte header
in common cases (Robert Haas)
</para>
<para>
Previously all <type>numeric</> values had four-byte headers;
this change saves on disk storage.
</para>
</listitem>
<listitem>
<para>
Add support for dividing <type>money</> by <type>money</>
(Andy Balholm)
</para>
</listitem>
<listitem>
<para>
Allow binary I/O on type <type>void</type> (Radoslaw Smogura)
</para>
</listitem>
<listitem>
<para>
Improve hypotenuse calculations for geometric operators (Paul Matthews)
</para>
<para>
This avoids unnecessary overflows, and may also be more accurate.
</para>
</listitem>
<listitem>
<para>
Support hashing array values (Tom Lane)
</para>
<para>
This provides additional query optimization possibilities.
</para>
</listitem>
<listitem>
<para>
Don't treat a composite type as sortable unless all its column types
are sortable (Tom Lane)
</para>
<para>
This avoids possible <quote>could not identify a comparison function</>
failures at runtime, if it is possible to implement the query without
sorting. Also, <command>ANALYZE</> won't try to use inappropriate
statistics-gathering methods for columns of such composite types.
</para>
</listitem>
</itemizedlist>
<sect4>
<title>Casting</title>
<itemizedlist>
<listitem>
<para>
Add support for casting between <type>money</> and <type>numeric</>
(Andy Balholm)
</para>
</listitem>
<listitem>
<para>
Add support for casting from <type>int4</> and <type>int8</>
to <type>money</> (Joey Adams)
</para>
</listitem>
<listitem>
<para>
Allow casting a table's row type to the table's supertype if
it's a typed table (Peter Eisentraut)
</para>
<para>
This is analogous to the existing facility that allows casting a row
type to a supertable's row type.
</para>
</listitem>
</itemizedlist>
</sect4>
<sect4>
<title><link linkend="functions-xml"><acronym>XML</></link></title>
<itemizedlist>
<listitem>
<para>
Add <acronym>XML</> function <link
linkend="xml-exists"><literal>XMLEXISTS</></link> and <link
linkend="xml-exists"><function>xpath_exists()</></link>
functions (Mike Fowler)
</para>
<para>
These are used for XPath matching.
</para>
</listitem>
<listitem>
<para>
Add <acronym>XML</> functions <link
linkend="xml-is-well-formed"><function>xml_is_well_formed()</></link>,
<link
linkend="xml-is-well-formed"><function>xml_is_well_formed_document()</></link>,
<link
linkend="xml-is-well-formed"><function>xml_is_well_formed_content()</></link>
(Mike Fowler)
</para>
<para>
These check whether the input is properly-formed <acronym>XML</>.
They provide functionality that was previously available only in
the deprecated <filename>contrib/xml2</filename> module.
</para>
</listitem>
</itemizedlist>
</sect4>
</sect3>
<sect3>
<title>Functions</title>
<itemizedlist>
<listitem>
<para>
Add SQL function <link
linkend="format"><function>format(text, ...)</></link>, which
behaves analogously to C's <function>printf()</> (Pavel Stehule,
Robert Haas)
</para>
<para>
It currently supports formats for strings, SQL literals, and
SQL identifiers.
</para>
</listitem>
<listitem>
<para>
Add string functions <link
linkend="functions-string-other"><function>concat()</></link>,
<link
linkend="functions-string-other"><function>concat_ws()</></link>,
<link linkend="functions-string-other"><function>left()</></link>,
<link linkend="functions-string-other"><function>right()</></link>,
and <link
linkend="functions-string-other"><function>reverse()</></link>
(Pavel Stehule)
</para>
<para>
These improve compatibility with other database products.
</para>
</listitem>
<listitem>
<para>
Add function <link
linkend="functions-admin-genfile"><function>pg_read_binary_file()</></link>
to read binary files (Dimitri Fontaine, Itagaki Takahiro)
</para>
</listitem>
<listitem>
<para>
Add a single-parameter version of function <link
linkend="functions-admin-genfile"><function>pg_read_file()</></link>
to read an entire file (Dimitri Fontaine, Itagaki Takahiro)
</para>
</listitem>
<listitem>
<para>
Add three-parameter forms of <link
linkend="array-functions-table"><function>array_to_string()</></link>
and <link
linkend="array-functions-table"><function>string_to_array()</></link>
for null value processing control (Pavel Stehule)
</para>
</listitem>
</itemizedlist>
<sect4>
<title>Object Information Functions</title>
<itemizedlist>
<listitem>
<para>
Add the <link
linkend="functions-info-catalog-table"><function>pg_describe_object()</></link>
function (Alvaro Herrera)
</para>
<para>
This function is used to obtain a human-readable string describing
an object, based on the <link
linkend="catalog-pg-class"><structname>pg_class</structname></link>
OID, object OID, and sub-object ID. It can be used to help
interpret the contents of <link
linkend="catalog-pg-depend"><structname>pg_depend</structname></link>.
</para>
</listitem>
<listitem>
<para>
Update comments for built-in operators and their underlying
functions (Tom Lane)
</para>
<para>
Functions that are meant to be used via an associated operator
are now commented as such.
</para>
</listitem>
<listitem>
<para>
Add variable <link
linkend="guc-quote-all-identifiers"><varname>quote_all_identifiers</></link>
to force the quoting of all identifiers in <command>EXPLAIN</>
and in system catalog functions like <link
linkend="functions-info-catalog-table"><function>pg_get_viewdef()</></link>
(Robert Haas)
</para>
<para>
This makes exporting schemas to tools and other databases with
different quoting rules easier.
</para>
</listitem>
<listitem>
<para>
Add columns to the <link
linkend="infoschema-sequences"><structname>information_schema.sequences</></link>
system view (Peter Eisentraut)
</para>
<para>
Previously, though the view existed, the columns about the
sequence parameters were unimplemented.
</para>
</listitem>
<listitem>
<para>
Allow <literal>public</> as a pseudo-role name in <link
linkend="functions-info-access-table"><function>has_table_privilege()</></link>
and related functions (Alvaro Herrera)
</para>
<para>
This allows checking for public permissions.
</para>
</listitem>
</itemizedlist>
</sect4>
<sect4>
<title>Function and Trigger Creation</title>
<itemizedlist>
<listitem>
<para>
Support <link linkend="SQL-CREATETRIGGER"><literal>INSTEAD
OF</></link> triggers on views (Dean Rasheed)
</para>
<para>
This feature can be used to implement fully updatable views.
</para>
</listitem>
</itemizedlist>
</sect4>
</sect3>
<sect3>
<title>Server-Side Languages</title>
<sect4>
<title><link linkend="plpgsql">PL/pgSQL</link> Server-Side Language</title>
<itemizedlist>
<listitem>
<para>
Add <link linkend="plpgsql-foreach-array"><command>FOREACH IN
ARRAY</></link> to PL/pgSQL
(Pavel Stehule)
</para>
<para>
This is more efficient and readable than previous methods of
iterating through the elements of an array value.
</para>
</listitem>
<listitem>
<para>
Allow <command>RAISE</command> without parameters to be caught in
the same places that could catch a <command>RAISE ERROR</command>
from the same location (Piyush Newe)
</para>
<para>
The previous coding threw the error
from the block containing the active exception handler.
The new behavior is more consistent with other DBMS products.
</para>
</listitem>
</itemizedlist>
</sect4>
<sect4>
<title><link linkend="plperl">PL/Perl</link> Server-Side Language</title>
<itemizedlist>
<listitem>
<para>
Allow generic record arguments to PL/Perl functions (Andrew
Dunstan)
</para>
<para>
PL/Perl functions can now be declared to accept type <type>record</>.
The behavior is the same as for any named composite type.
</para>
</listitem>
<listitem>
<para>
Convert PL/Perl array arguments to Perl arrays (Alexey Klyukin,
Alex Hunsaker)
</para>
<para>
String representations are still available.
</para>
</listitem>
<listitem>
<para>
Convert PL/Perl composite-type arguments to Perl hashes
(Alexey Klyukin, Alex Hunsaker)
</para>
<para>
String representations are still available.
</para>
</listitem>
</itemizedlist>
</sect4>
<sect4>
<title><link linkend="plpython">PL/Python</link> Server-Side Language</title>
<itemizedlist>
<listitem>
<para>
Add table function support for PL/Python (Jan Urbanski)
</para>
<para>
PL/Python can now return multiple <literal>OUT</> parameters
and record sets.
</para>
</listitem>
<listitem>
<para>
Add a validator to PL/Python (Jan Urbanski)
</para>
<para>
This allows PL/Python functions to be syntax-checked at function
creation time.
</para>
</listitem>
<listitem>
<para>
Allow exceptions for SQL queries in PL/Python (Jan Urbanski)
</para>
<para>
This allows access to SQL-generated exception error codes from
PL/Python exception blocks.
</para>
</listitem>
<listitem>
<para>
Add explicit subtransactions to PL/Python (Jan Urbanski)
</para>
</listitem>
<listitem>
<para>
Add PL/Python functions for quoting strings (Jan Urbanski)
</para>
<para>
These functions are <link
linkend="plpython-util"><literal>plpy.quote_ident</></link>,
<link linkend="plpython-util"><literal>plpy.quote_literal</></link>,
and <link
linkend="plpython-util"><literal>plpy.quote_nullable</></link>.
</para>
</listitem>
<listitem>
<para>
Add traceback information to PL/Python errors (Jan Urbanski)
</para>
</listitem>
<listitem>
<para>
Report PL/Python errors from iterators with <literal>PLy_elog</> (Jan
Urbanski)
</para>
</listitem>
<listitem>
<para>
Fix exception handling with Python 3 (Jan Urbanski)
</para>
<para>
Exception classes were previously not available in
<literal>plpy</> under Python 3.
</para>
</listitem>
</itemizedlist>
</sect4>
</sect3>
<sect3>
<title>Client Applications</title>
<itemizedlist>
<listitem>
<para>
Mark <link
linkend="APP-CREATELANG"><application>createlang</></link>
and <link linkend="APP-DROPLANG"><application>droplang</></link>
as deprecated now that they just invoke extension commands (Tom
Lane)
</para>
</listitem>
</itemizedlist>
<sect4>
<title><link linkend="APP-PSQL"><application>psql</></link></title>
<itemizedlist>
<listitem>
<para>
Add <application>psql</> command <literal>\conninfo</>
to show current connection information (David Christensen)
</para>
</listitem>
<listitem>
<para>
Add <application>psql</> command <literal>\sf</> to
show a function's definition (Pavel Stehule)
</para>
</listitem>
<listitem>
<para>
Add <application>psql</> command <literal>\dL</> to list
languages (Fernando Ike)
</para>
</listitem>
<listitem>
<para>
Add the <option>S</> (<quote>system</>) option to <application>psql</>'s
<literal>\dn</> (list schemas) command (Tom Lane)
</para>
<para>
<literal>\dn</> without <literal>S</> now suppresses system
schemas.
</para>
</listitem>
<listitem>
<para>
Allow <application>psql</>'s <literal>\e</> and <literal>\ef</>
commands to accept a line number to be used to position the
cursor in the editor (Pavel Stehule)
</para>
<para>
This is passed to the editor according to the
<envar>PSQL_EDITOR_LINENUMBER_ARG</> environment variable.
</para>
</listitem>
<listitem>
<para>
Have <application>psql</> set the client encoding from the
operating system locale by default (Heikki Linnakangas)
</para>
<para>
This only happens if the <envar>PGCLIENTENCODING</> environment
variable is not set.
</para>
</listitem>
<listitem>
<para>
Make <literal>\d</literal> distinguish between unique
indexes and unique constraints (Josh Kupershmidt)
</para>
</listitem>
<listitem>
<para>
Make <literal>\dt+</literal> report <function>pg_table_size</>
instead of <function>pg_relation_size</> when talking to 9.0 or
later servers (Bernd Helmle)
</para>
<para>
This is a more useful measure of table size, but note that it is
not identical to what was previously reported in the same display.
</para>
</listitem>
<listitem>
<para>
Additional tab completion support (Itagaki Takahiro, Pavel Stehule,
Andrey Popp, Christoph Berg, David Fetter, Josh Kupershmidt)
</para>
</listitem>
</itemizedlist>
</sect4>
<sect4>
<title><link linkend="APP-PGDUMP"><application>pg_dump</></link></title>
<itemizedlist>
<listitem>
<para>
Add <link linkend="APP-PGDUMP"><application>pg_dump</></link>
and <link
linkend="APP-PG-DUMPALL"><application>pg_dumpall</></link>
option <option>--quote-all-identifiers</> to force quoting
of all identifiers (Robert Haas)
</para>
</listitem>
<listitem>
<para>
Add <literal>directory</> format to <application>pg_dump</>
(Joachim Wieland, Heikki Linnakangas)
</para>
<para>
This is internally similar to the <literal>tar</>
<application>pg_dump</> format.
</para>
</listitem>
</itemizedlist>
</sect4>
<sect4>
<title><link linkend="APP-PG-CTL"><application>pg_ctl</></link></title>
<itemizedlist>
<listitem>
<para>
Fix <application>pg_ctl</>
so it no longer incorrectly reports that the server is not
running (Bruce Momjian)
</para>
<para>
Previously this could happen if the server was running but
<application>pg_ctl</> could not authenticate.
</para>
</listitem>
<listitem>
<para>
Improve <application>pg_ctl</> start's <quote>wait</quote>
(<option>-w</>) option (Bruce Momjian, Tom Lane)
</para>
<para>
The wait mode is now significantly more robust. It will not get
confused by non-default postmaster port numbers, non-default
Unix-domain socket locations, permission problems, or stale
postmaster lock files.
</para>
</listitem>
<listitem>
<para>
Add <literal>promote</> option to <application>pg_ctl</> to
switch a standby server to primary (Fujii Masao)
</para>
</listitem>
</itemizedlist>
</sect4>
</sect3>
<sect3>
<title><application>Development Tools</></title>
<sect4>
<title><link linkend="libpq"><application>libpq</></link></title>
<itemizedlist>
<listitem>
<para>
Add a libpq connection option <link
linkend="libpq-connect-client-encoding"><literal>client_encoding</></link>
which behaves like the <envar>PGCLIENTENCODING</> environment
variable (Heikki Linnakangas)
</para>
<para>
The value <literal>auto</> sets the client encoding based on
the operating system locale.
</para>
</listitem>
<listitem>
<para>
Add <link
linkend="libpq-pqlibversion"><function>PQlibVersion()</></link>
function which returns the libpq library version (Magnus
Hagander)
</para>
<para>
libpq already had <function>PQserverVersion()</> which returns
the server version.
</para>
</listitem>
<listitem>
<para>
Allow libpq-using clients to
check the user name of the server process
when connecting via Unix-domain sockets, with the new <link
linkend="libpq-connect-requirepeer"><literal>requirepeer</></link>
connection option
(Peter Eisentraut)
</para>
<para>
<productname>PostgreSQL</> already allowed servers to check
the client user name when connecting via Unix-domain sockets.
</para>
</listitem>
<listitem>
<para>
Add <link linkend="libpq-pqping"><function>PQping()</></link>
and <link
linkend="libpq-pqpingparams"><function>PQpingParams()</></link>
to libpq (Bruce Momjian, Tom Lane)
</para>
<para>
These functions allow detection of the server's status without
trying to open a new session.
</para>
</listitem>
</itemizedlist>
</sect4>
<sect4>
<title><link linkend="ecpg"><application>ECPG</></link></title>
<itemizedlist>
<listitem>
<para>
Allow ECPG to accept dynamic cursor names even in
<literal>WHERE CURRENT OF</literal> clauses
(Zoltan Boszormenyi)
</para>
</listitem>
<listitem>
<para>
Make <application>ecpglib</> write <type>double</> values with a
precision of 15 digits, not 14 as formerly (Akira Kurosawa)
</para>
</listitem>
</itemizedlist>
</sect4>
</sect3>
<sect3>
<title>Build Options</title>
<itemizedlist>
<listitem>
<para>
Use <literal>+Olibmerrno</> compile flag with HP-UX C compilers
that accept it (Ibrar Ahmed)
</para>
<para>
This avoids possible misbehavior of math library calls on recent
HP platforms.
</para>
</listitem>
</itemizedlist>
<sect4>
<title>Makefiles</title>
<itemizedlist>
<listitem>
<para>
Improved parallel make support (Peter Eisentraut)
</para>
<para>
This allows for faster compiles. Also, <literal>make -k</>
now works more consistently.
</para>
</listitem>
<listitem>
<para>
Require <acronym>GNU</> <link
linkend="install-requirements"><application>make</></link>
3.80 or newer (Peter Eisentraut)
</para>
<para>
This is necessary because of the parallel-make improvements.
</para>
</listitem>
<listitem>
<para>
Add <literal>make maintainer-check</> target
(Peter Eisentraut)
</para>
<para>
This target performs various source code checks that are not
appropriate for either the build or the regression tests. Currently:
duplicate_oids, SGML syntax and tabs check, NLS syntax check.
</para>
</listitem>
<listitem>
<para>
Support <literal>make check</> in <filename>contrib</>
(Peter Eisentraut)
</para>
<para>
Formerly only <literal>make installcheck</> worked, but now
there is support for testing in a temporary installation.
The top-level <literal>make check-world</> target now includes
testing <filename>contrib</> this way.
</para>
</listitem>
</itemizedlist>
</sect4>
<sect4>
<title>Windows</title>
<itemizedlist>
<listitem>
<para>
On Windows, allow <link
linkend="app-pg-ctl"><application>pg_ctl</></link> to register
the service as auto-start or start-on-demand (Quan Zongliang)
</para>
</listitem>
<listitem>
<para>
Add support for collecting <link linkend="windows-crash-dumps">crash
dumps</link> on Windows (Craig Ringer, Magnus Hagander)
</para>
<para>
<productname>minidumps</> can now be generated by non-debug
Windows binaries and analyzed by standard debugging tools.
</para>
</listitem>
<listitem>
<para>
Enable building with the MinGW64 compiler (Andrew Dunstan)
</para>
<para>
This allows building 64-bit Windows binaries even on non-Windows
platforms via cross-compiling.
</para>
</listitem>
</itemizedlist>
</sect4>
</sect3>
<sect3>
<title>Source Code</title>
<itemizedlist>
<listitem>
<para>
Revise the API for GUC variable assign hooks (Tom Lane)
</para>
<para>
The previous functions of assign hooks are now split between check
hooks and assign hooks, where the former can fail but the latter
shouldn't. This change will impact add-on modules that define custom
GUC parameters.
</para>
</listitem>
<listitem>
<para>
Add latches to the source code to support waiting for events (Heikki
Linnakangas)
</para>
</listitem>
<listitem>
<para>
Centralize data modification permissions-checking logic
(KaiGai Kohei)
</para>
</listitem>
<listitem>
<para>
Add missing <function>get_<replaceable>object</>_oid()</function> functions, for consistency
(Robert Haas)
</para>
</listitem>
<listitem>
<para>
Improve ability to use C++ compilers for <link
linkend="xfunc-c">compiling add-on modules</link> by removing
conflicting key words (Tom Lane)
</para>
</listitem>
<listitem>
<para>
Add support for DragonFly <acronym>BSD</> (Rumko)
</para>
</listitem>
<listitem>
<para>
Expose <function>quote_literal_cstr()</> for backend use
(Robert Haas)
</para>
</listitem>
<listitem>
<para>
Run <link linkend="build">regression tests</link> in the
default encoding (Peter Eisentraut)
</para>
<para>
Regression tests were previously always run with
<literal>SQL_ASCII</> encoding.
</para>
</listitem>
<listitem>
<para>
Add <application>src/tools/git_changelog</> to replace
<application>cvs2cl</> and <application>pgcvslog</> (Robert
Haas, Tom Lane)
</para>
</listitem>
<listitem>
<para>
Add <application>git-external-diff</> script to
<filename>src/tools</> (Bruce Momjian)
</para>
<para>
This is used to generate context diffs from git.
</para>
</listitem>
<listitem>
<para>
Improve support for building with
<application>Clang</application> (Peter Eisentraut)
</para>
</listitem>
</itemizedlist>
<sect4>
<title>Server Hooks</title>
<itemizedlist>
<listitem>
<para>
Add source code hooks to check permissions (Robert Haas,
Stephen Frost)
</para>
</listitem>
<listitem>
<para>
Add post-object-creation function hooks for use by security
frameworks (KaiGai Kohei)
</para>
</listitem>
<listitem>
<para>
Add a client authentication hook (KaiGai Kohei)
</para>
</listitem>
</itemizedlist>
</sect4>
</sect3>
<sect3>
<title>Contrib</title>
<itemizedlist>
<listitem>
<para>
Modify <filename>contrib</> modules and procedural
languages to install via the new <link
linkend="extend-extensions">extension</link> mechanism (Tom Lane,
Dimitri Fontaine)
</para>
</listitem>
<listitem>
<para>
Add <link linkend="file-fdw"><filename>contrib/file_fdw</></link>
foreign-data wrapper (Shigeru Hanada)
</para>
<para>
Foreign tables using this foreign data wrapper can read flat files
in a manner very similar to <command>COPY</>.
</para>
</listitem>
<listitem>
<para>
Add nearest-neighbor search support to <link
linkend="pgtrgm"><filename>contrib/pg_trgm</></link> and <link
linkend="btree-gist"><filename>contrib/btree_gist</></link>
(Teodor Sigaev)
</para>
</listitem>
<listitem>
<para>
Add <link
linkend="btree-gist"><filename>contrib/btree_gist</></link>
support for searching on not-equals (Jeff Davis)
</para>
</listitem>
<listitem>
<para>
Fix <link
linkend="fuzzystrmatch"><filename>contrib/fuzzystrmatch</></link>'s
<function>levenshtein()</> function to handle multibyte characters
(Alexander Korotkov)
</para>
</listitem>
<listitem>
<para>
Add <function>ssl_cipher()</> and <function>ssl_version()</>
functions to <link
linkend="sslinfo"><filename>contrib/sslinfo</></link> (Robert
Haas)
</para>
</listitem>
<listitem>
<para>
Fix <link linkend="intarray"><filename>contrib/intarray</></link>
and <link linkend="hstore"><filename>contrib/hstore</></link>
to give consistent results with indexed empty arrays (Tom Lane)
</para>
<para>
Previously an empty-array query that used an index might return
different results from one that used a sequential scan.
</para>
</listitem>
<listitem>
<para>
Allow <link linkend="intarray"><filename>contrib/intarray</></link>
to work properly on multidimensional arrays (Tom Lane)
</para>
</listitem>
<listitem>
<para>
In
<link linkend="intarray"><filename>contrib/intarray</></link>,
avoid errors complaining about the presence of nulls in cases where no
nulls are actually present (Tom Lane)
</para>
</listitem>
<listitem>
<para>
In
<link linkend="intarray"><filename>contrib/intarray</></link>,
fix behavior of containment operators with respect to empty arrays
(Tom Lane)
</para>
<para>
Empty arrays are now correctly considered to be contained in any other
array.
</para>
</listitem>
<listitem>
<para>
Remove <link linkend="xml2"><filename>contrib/xml2</></link>'s
arbitrary limit on the number of
<replaceable>parameter</>=<replaceable>value</> pairs that can be
handled by <function>xslt_process()</> (Pavel Stehule)
</para>
<para>
The previous limit was 10.
</para>
</listitem>
<listitem>
<para>
In <link linkend="pageinspect"><filename>contrib/pageinspect</></link>,
fix heap_page_item to return infomasks as 32-bit values (Alvaro Herrera)
</para>
<para>
This avoids returning negative values, which was confusing. The
underlying value is a 16-bit unsigned integer.
</para>
</listitem>
</itemizedlist>
<sect4>
<title>Security</title>
<itemizedlist>
<listitem>
<para>
Add <link linkend="sepgsql"><filename>contrib/sepgsql</></link>
to interface permission checks with <acronym>SELinux</> (KaiGai Kohei)
</para>
<para>
This uses the new <link
linkend="SQL-SECURITY-LABEL"><command>SECURITY LABEL</></link>
facility.
</para>
</listitem>
<listitem>
<para>
Add contrib module <link
linkend="auth-delay"><filename>auth_delay</></link> (KaiGai
Kohei)
</para>
<para>
This causes the server to pause before returning authentication
failure; it is designed to make brute force password attacks
more difficult.
</para>
</listitem>
<listitem>
<para>
Add <link linkend="dummy-seclabel"><filename>dummy_seclabel</></link>
contrib module (KaiGai Kohei)
</para>
<para>
This is used for permission regression testing.
</para>
</listitem>
</itemizedlist>
</sect4>
<sect4>
<title>Performance</title>
<itemizedlist>
<listitem>
<para>
Add support for <literal>LIKE</> and <literal>ILIKE</> index
searches to <link
linkend="pgtrgm"><filename>contrib/pg_trgm</></link> (Alexander
Korotkov)
</para>
</listitem>
<listitem>
<para>
Add <function>levenshtein_less_equal()</> function to <link
linkend="fuzzystrmatch"><filename>contrib/fuzzystrmatch</></link>,
which is optimized for small distances (Alexander Korotkov)
</para>
</listitem>
<listitem>
<para>
Improve performance of index lookups on <link
linkend="seg"><filename>contrib/seg</></link> columns (Alexander
Korotkov)
</para>
</listitem>
<listitem>
<para>
Improve performance of <link
linkend="pgupgrade"><application>pg_upgrade</></link> for
databases with many relations (Bruce Momjian)
</para>
</listitem>
<listitem>
<para>
Add flag to <link
linkend="pgbench"><filename>contrib/pgbench</></link> to
report per-statement latencies (Florian Pflug)
</para>
</listitem>
</itemizedlist>
</sect4>
<sect4>
<title>Fsync Testing</title>
<itemizedlist>
<listitem>
<para>
Move <filename>src/tools/test_fsync</> to <link
linkend="pgtestfsync"><filename>contrib/pg_test_fsync</></link>
(Bruce Momjian, Tom Lane)
</para>
</listitem>
<listitem>
<para>
Add <literal>O_DIRECT</> support to <link
linkend="pgtestfsync"><filename>contrib/pg_test_fsync</></link>
(Bruce Momjian)
</para>
<para>
This matches the use of <literal>O_DIRECT</> by <link
linkend="guc-wal-sync-method"><varname>wal_sync_method</></link>.
</para>
</listitem>
<listitem>
<para>
Add new tests to <link
linkend="pgtestfsync"><filename>contrib/pg_test_fsync</></link>
(Bruce Momjian)
</para>
</listitem>
</itemizedlist>
</sect4>
</sect3>
<sect3>
<title>Documentation</title>
<itemizedlist>
<listitem>
<para>
Extensive <link linkend="ecpg"><application>ECPG</></link>
documentation improvements (Satoshi Nagayasu)
</para>
</listitem>
<listitem>
<para>
Extensive proofreading and documentation improvements
(Thom Brown, Josh Kupershmidt, Susanne Ebrecht)
</para>
</listitem>
<listitem>
<para>
Add documentation for <link
linkend="guc-exit-on-error"><varname>exit_on_error</></link>
(Robert Haas)
</para>
<para>
This parameter causes sessions to exit on any error.
</para>
</listitem>
<listitem>
<para>
Add documentation for <link
linkend="functions-info-catalog-table"><function>pg_options_to_table()</></link>
(Josh Berkus)
</para>
<para>
This function shows table storage options in a readable form.
</para>
</listitem>
<listitem>
<para>
Document that it is possible to access all composite type
fields using <link
linkend="field-selection"><literal>(compositeval).*</></link>
syntax (Peter Eisentraut)
</para>
</listitem>
<listitem>
<para>
Document that <link
linkend="functions-string-other"><function>translate()</></link>
removes characters in <literal>from</> that don't have a
corresponding <literal>to</> character (Josh Kupershmidt)
</para>
</listitem>
<listitem>
<para>
Merge documentation for <command>CREATE CONSTRAINT TRIGGER</> and <link
linkend="SQL-CREATETRIGGER"><command>CREATE TRIGGER</></link>
(Alvaro Herrera)
</para>
</listitem>
<listitem>
<para>
Centralize <link linkend="ddl-priv">permission</link> and <link
linkend="upgrading">upgrade</link> documentation (Bruce Momjian)
</para>
</listitem>
<listitem>
<para>
Add <link linkend="sysvipc-parameters">kernel tuning
documentation</link> for Solaris 10 (Josh Berkus)
</para>
<para>
Previously only Solaris 9 kernel tuning was documented.
</para>
</listitem>
<listitem>
<para>
Handle non-ASCII characters consistently in <filename>HISTORY</> file
(Peter Eisentraut)
</para>
<para>
While the <filename>HISTORY</> file is in English, we do have to deal
with non-ASCII letters in contributor names. These are now
transliterated so that they are reasonably legible without assumptions
about character set.
</para>
</listitem>
</itemizedlist>
</sect3>
</sect2>
</sect1>
|