~ubuntu-branches/ubuntu/trusty/postgresql-9.3/trusty-updates

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
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<HTML
><HEAD
><TITLE
>Release 9.2</TITLE
><META
NAME="GENERATOR"
CONTENT="Modular DocBook HTML Stylesheet Version 1.79"><LINK
REV="MADE"
HREF="mailto:pgsql-docs@postgresql.org"><LINK
REL="HOME"
TITLE="PostgreSQL 9.3.13 Documentation"
HREF="index.html"><LINK
REL="UP"
TITLE="Release Notes"
HREF="release.html"><LINK
REL="PREVIOUS"
TITLE="Release 9.2.1"
HREF="release-9-2-1.html"><LINK
REL="NEXT"
TITLE="Release 9.1.22"
HREF="release-9-1-22.html"><LINK
REL="STYLESHEET"
TYPE="text/css"
HREF="stylesheet.css"><META
HTTP-EQUIV="Content-Type"
CONTENT="text/html; charset=ISO-8859-1"><META
NAME="creation"
CONTENT="2016-05-09T21:13:26"></HEAD
><BODY
CLASS="SECT1"
><DIV
CLASS="NAVHEADER"
><TABLE
SUMMARY="Header navigation table"
WIDTH="100%"
BORDER="0"
CELLPADDING="0"
CELLSPACING="0"
><TR
><TH
COLSPAN="5"
ALIGN="center"
VALIGN="bottom"
><A
HREF="index.html"
>PostgreSQL 9.3.13 Documentation</A
></TH
></TR
><TR
><TD
WIDTH="10%"
ALIGN="left"
VALIGN="top"
><A
TITLE="Release 9.2.1"
HREF="release-9-2-1.html"
ACCESSKEY="P"
>Prev</A
></TD
><TD
WIDTH="10%"
ALIGN="left"
VALIGN="top"
><A
HREF="release.html"
ACCESSKEY="U"
>Up</A
></TD
><TD
WIDTH="60%"
ALIGN="center"
VALIGN="bottom"
>Appendix E. Release Notes</TD
><TD
WIDTH="20%"
ALIGN="right"
VALIGN="top"
><A
TITLE="Release 9.1.22"
HREF="release-9-1-22.html"
ACCESSKEY="N"
>Next</A
></TD
></TR
></TABLE
><HR
ALIGN="LEFT"
WIDTH="100%"></DIV
><DIV
CLASS="SECT1"
><H1
CLASS="SECT1"
><A
NAME="RELEASE-9-2"
>E.32. Release 9.2</A
></H1
><DIV
CLASS="NOTE"
><BLOCKQUOTE
CLASS="NOTE"
><P
><B
>Release Date: </B
>2012-09-10</P
></BLOCKQUOTE
></DIV
><DIV
CLASS="SECT2"
><H2
CLASS="SECT2"
><A
NAME="AEN120624"
>E.32.1. Overview</A
></H2
><P
>    This release has been largely focused on performance improvements, though
    new SQL features are not lacking.  Work also continues in the area of
    replication support.  Major enhancements include:
   </P
><P
></P
><UL
><LI
><P
>        Allow queries to retrieve data only from indexes, avoiding heap
        access (<I
CLASS="FIRSTTERM"
>index-only scans</I
>)
       </P
></LI
><LI
><P
>        Allow the planner to generate custom plans for specific parameter
        values even when using prepared statements
       </P
></LI
><LI
><P
>        Improve the planner's ability to use nested loops with inner
        index scans
       </P
></LI
><LI
><P
>        Allow streaming replication slaves to forward data to other slaves
        (<A
HREF="warm-standby.html#CASCADING-REPLICATION"
><I
CLASS="FIRSTTERM"
>cascading
        replication</I
></A
>)
       </P
></LI
><LI
><P
>        Allow <A
HREF="app-pgbasebackup.html"
><SPAN
CLASS="APPLICATION"
>pg_basebackup</SPAN
></A
>
        to make base backups from standby servers
       </P
></LI
><LI
><P
>        Add a <A
HREF="app-pgreceivexlog.html"
><SPAN
CLASS="APPLICATION"
>pg_receivexlog</SPAN
></A
>
        tool to archive WAL file changes as they are written
       </P
></LI
><LI
><P
>        Add the <A
HREF="spgist.html"
>SP-GiST</A
> (Space-Partitioned
        GiST) index access method
       </P
></LI
><LI
><P
>        Add support for <A
HREF="rangetypes.html"
>range data types</A
>
       </P
></LI
><LI
><P
>        Add a <A
HREF="datatype-json.html"
><TT
CLASS="TYPE"
>JSON</TT
></A
>
        data type
       </P
></LI
><LI
><P
>        Add a <A
HREF="sql-createview.html"
><TT
CLASS="LITERAL"
>security_barrier</TT
></A
>
        option for views
       </P
></LI
><LI
><P
>        Allow <SPAN
CLASS="APPLICATION"
>libpq</SPAN
> connection strings to have the format of a
        <A
HREF="libpq-connect.html#LIBPQ-CONNSTRING"
><ACRONYM
CLASS="ACRONYM"
>URI</ACRONYM
></A
>
       </P
></LI
><LI
><P
>        Add a <A
HREF="libpq-single-row-mode.html"
>single-row processing
        mode</A
> to <SPAN
CLASS="APPLICATION"
>libpq</SPAN
> for better handling of large
        result sets
       </P
></LI
></UL
><P
>    The above items are explained in more detail in the sections below.
   </P
></DIV
><DIV
CLASS="SECT2"
><H2
CLASS="SECT2"
><A
NAME="AEN120671"
>E.32.2. Migration to Version 9.2</A
></H2
><P
>    A dump/restore using <SPAN
CLASS="APPLICATION"
>pg_dump</SPAN
>, or use of
    <SPAN
CLASS="APPLICATION"
>pg_upgrade</SPAN
>, is required for those wishing
    to migrate data from any previous release.
   </P
><P
>    Version 9.2 contains a number of changes that may affect compatibility
    with previous releases.  Observe the following incompatibilities:
   </P
><DIV
CLASS="SECT3"
><H3
CLASS="SECT3"
><A
NAME="AEN120677"
>E.32.2.1. System Catalogs</A
></H3
><P
></P
><UL
><LI
><P
>        Remove the <TT
CLASS="STRUCTFIELD"
>spclocation</TT
> field from <A
HREF="catalog-pg-tablespace.html"
><TT
CLASS="STRUCTNAME"
>pg_tablespace</TT
></A
>
        (Magnus Hagander)
       </P
><P
>        This field was duplicative of the symbolic links that actually define
        tablespace locations, and thus risked errors of omission when moving
        a tablespace.  This change allows tablespace directories to be moved
        while the server is down, by manually adjusting the symbolic links.
        To replace this field, we have added <A
HREF="functions-info.html#FUNCTIONS-INFO-CATALOG-TABLE"
><CODE
CLASS="FUNCTION"
>pg_tablespace_location()</CODE
></A
>
        to allow querying of the symbolic links.
       </P
></LI
><LI
><P
>        Move <TT
CLASS="TYPE"
>tsvector</TT
> most-common-element statistics to new
        <A
HREF="view-pg-stats.html"
><TT
CLASS="STRUCTNAME"
>pg_stats</TT
></A
> columns
        (Alexander Korotkov)
       </P
><P
>        Consult <TT
CLASS="STRUCTFIELD"
>most_common_elems</TT
>
        and <TT
CLASS="STRUCTFIELD"
>most_common_elem_freqs</TT
> for the data formerly
        available in <TT
CLASS="STRUCTFIELD"
>most_common_vals</TT
>
        and <TT
CLASS="STRUCTFIELD"
>most_common_freqs</TT
> for a <TT
CLASS="TYPE"
>tsvector</TT
> column.
       </P
></LI
></UL
></DIV
><DIV
CLASS="SECT3"
><H3
CLASS="SECT3"
><A
NAME="AEN120699"
>E.32.2.2. Functions</A
></H3
><P
></P
><UL
><LI
><P
>        Remove <A
HREF="hstore.html"
>hstore</A
>'s <TT
CLASS="LITERAL"
>=&gt;</TT
>
        operator (Robert Haas)
       </P
><P
>        Users should now use <CODE
CLASS="FUNCTION"
>hstore(text, text)</CODE
>.  Since
        <SPAN
CLASS="PRODUCTNAME"
>PostgreSQL</SPAN
> 9.0, a warning message has been
        emitted when an operator named <TT
CLASS="LITERAL"
>=&gt;</TT
> is created because
        the <ACRONYM
CLASS="ACRONYM"
>SQL</ACRONYM
> standard reserves that token for
        another use.
       </P
></LI
><LI
><P
>        Ensure that <A
HREF="functions-xml.html#FUNCTIONS-XML-PROCESSING"
><CODE
CLASS="FUNCTION"
>xpath()</CODE
></A
>
        escapes special characters in string values (Florian Pflug)
       </P
><P
>        Without this it is possible for the result not to be valid
        <ACRONYM
CLASS="ACRONYM"
>XML</ACRONYM
>.
       </P
></LI
><LI
><P
>        Make <A
HREF="functions-admin.html#FUNCTIONS-ADMIN-DBOBJECT"
><CODE
CLASS="FUNCTION"
>pg_relation_size()</CODE
></A
>
        and friends return NULL if the object does not exist (Phil Sorber)
       </P
><P
>        This prevents queries that call these functions from returning
        errors immediately after a concurrent <TT
CLASS="COMMAND"
>DROP</TT
>.
       </P
></LI
><LI
><P
>        Make <A
HREF="functions-datetime.html#FUNCTIONS-DATETIME-EXTRACT"
><CODE
CLASS="FUNCTION"
>EXTRACT(EPOCH FROM
        <TT
CLASS="REPLACEABLE"
><I
>timestamp without time zone</I
></TT
>)</CODE
></A
>
        measure the epoch from local midnight, not <ACRONYM
CLASS="ACRONYM"
>UTC</ACRONYM
>
        midnight (Tom Lane)
       </P
><P
>        This change reverts an ill-considered change made in release 7.3.
        Measuring from <ACRONYM
CLASS="ACRONYM"
>UTC</ACRONYM
> midnight was inconsistent
        because it made the result dependent on the <A
HREF="runtime-config-client.html#GUC-TIMEZONE"
><TT
CLASS="VARNAME"
>timezone</TT
></A
> setting, which
        computations for <TT
CLASS="TYPE"
>timestamp without time zone</TT
> should not be.
        The previous behavior remains available by casting the input value
        to <TT
CLASS="TYPE"
>timestamp with time zone</TT
>.
       </P
></LI
><LI
><P
>        Properly parse time strings with trailing <TT
CLASS="LITERAL"
>yesterday</TT
>,
        <TT
CLASS="LITERAL"
>today</TT
>, and <TT
CLASS="LITERAL"
>tomorrow</TT
> (Dean Rasheed)
       </P
><P
>        Previously, <TT
CLASS="LITERAL"
>SELECT '04:00:00 yesterday'::timestamp</TT
>
        returned yesterday's date at midnight.
       </P
></LI
><LI
><P
>        Fix <A
HREF="functions-formatting.html"
><CODE
CLASS="FUNCTION"
>to_date()</CODE
></A
> and
        <CODE
CLASS="FUNCTION"
>to_timestamp()</CODE
> to wrap incomplete dates toward 2020
        (Bruce Momjian)
       </P
><P
>        Previously, supplied years and year masks of less than four digits
        wrapped inconsistently.
       </P
></LI
></UL
></DIV
><DIV
CLASS="SECT3"
><H3
CLASS="SECT3"
><A
NAME="AEN120748"
>E.32.2.3. Object Modification</A
></H3
><P
></P
><UL
><LI
><P
>        Prevent  <A
HREF="sql-alterdomain.html"
><TT
CLASS="COMMAND"
>ALTER
        DOMAIN</TT
></A
> from working on non-domain types (Peter
        Eisentraut)
       </P
><P
>        Owner and schema changes were previously possible on non-domain
        types.
       </P
></LI
><LI
><P
>        No longer forcibly lowercase procedural language names in <A
HREF="sql-createfunction.html"
><TT
CLASS="COMMAND"
>CREATE FUNCTION</TT
></A
>
        (Robert Haas)
       </P
><P
>        While unquoted language identifiers are still lowercased, strings
        and quoted identifiers are no longer forcibly down-cased.
        Thus for example <TT
CLASS="LITERAL"
>CREATE FUNCTION ... LANGUAGE 'C'</TT
>
        will no longer work; it must be spelled <TT
CLASS="LITERAL"
>'c'</TT
>, or better
        omit the quotes.
       </P
></LI
><LI
><P
>        Change system-generated names of foreign key enforcement triggers
        (Tom Lane)
       </P
><P
>        This change ensures that the triggers fire in the correct order in
        some corner cases involving self-referential foreign key constraints.
       </P
></LI
></UL
></DIV
><DIV
CLASS="SECT3"
><H3
CLASS="SECT3"
><A
NAME="AEN120766"
>E.32.2.4. Command-Line Tools</A
></H3
><P
></P
><UL
><LI
><P
>        Provide consistent backquote, variable
        expansion, and quoted substring behavior in <A
HREF="app-psql.html"
><SPAN
CLASS="APPLICATION"
>psql</SPAN
></A
> meta-command
        arguments (Tom Lane)
       </P
><P
>        Previously, such references were treated oddly when not separated by
        whitespace from adjacent text.  For example <TT
CLASS="LITERAL"
>'FOO'BAR</TT
> was
        output as <TT
CLASS="LITERAL"
>FOO BAR</TT
> (unexpected insertion of a space) and
        <TT
CLASS="LITERAL"
>FOO'BAR'BAZ</TT
> was output unchanged (not removing the quotes
        as most would expect).
       </P
></LI
><LI
><P
>        No longer treat <A
HREF="app-clusterdb.html"
><SPAN
CLASS="APPLICATION"
>clusterdb</SPAN
></A
>
        table names as double-quoted; no longer treat <A
HREF="app-reindexdb.html"
><SPAN
CLASS="APPLICATION"
>reindexdb</SPAN
></A
> table
        and index names as double-quoted (Bruce Momjian)
       </P
><P
>        Users must now include double-quotes in the command arguments if
        quoting is wanted.
       </P
></LI
><LI
><P
>        <A
HREF="app-createuser.html"
><SPAN
CLASS="APPLICATION"
>createuser</SPAN
></A
>
        no longer prompts for option settings by default (Peter Eisentraut)
       </P
><P
>        Use <TT
CLASS="OPTION"
>--interactive</TT
> to obtain the old behavior.
       </P
></LI
><LI
><P
>        Disable prompting for the user name in <A
HREF="app-dropuser.html"
><SPAN
CLASS="APPLICATION"
>dropuser</SPAN
></A
> unless
        <TT
CLASS="OPTION"
>--interactive</TT
> is specified (Peter Eisentraut)
       </P
></LI
></UL
></DIV
><DIV
CLASS="SECT3"
><H3
CLASS="SECT3"
><A
NAME="AEN120795"
>E.32.2.5. Server Settings</A
></H3
><P
></P
><UL
><LI
><P
>        Add server parameters for specifying the <A
HREF="runtime-config-connection.html#GUC-SSL-CA-FILE"
>locations of server-side
        <ACRONYM
CLASS="ACRONYM"
>SSL</ACRONYM
> files</A
> (Peter Eisentraut)
       </P
><P
>        This allows changing the names and locations of the files that were
        previously hard-coded as <TT
CLASS="FILENAME"
>server.crt</TT
>,
        <TT
CLASS="FILENAME"
>server.key</TT
>, <TT
CLASS="FILENAME"
>root.crt</TT
>, and
        <TT
CLASS="FILENAME"
>root.crl</TT
> in the data directory.
        <SPAN
CLASS="emphasis"
><I
CLASS="EMPHASIS"
>The server will no longer examine <TT
CLASS="FILENAME"
>root.crt</TT
> or
        <TT
CLASS="FILENAME"
>root.crl</TT
> by default</I
></SPAN
>; to load these files, the
        associated parameters must be set to non-default values.
       </P
></LI
><LI
><P
>        Remove the <TT
CLASS="VARNAME"
>silent_mode</TT
> parameter (Heikki Linnakangas)
       </P
><P
>        Similar behavior can be obtained with <TT
CLASS="COMMAND"
>pg_ctl start
        -l postmaster.log</TT
>.
       </P
></LI
><LI
><P
>        Remove the <TT
CLASS="VARNAME"
>wal_sender_delay</TT
> parameter,
        as it is no longer needed (Tom Lane)
       </P
></LI
><LI
><P
>        Remove the <TT
CLASS="VARNAME"
>custom_variable_classes</TT
> parameter (Tom Lane)
       </P
><P
>        The checking provided by this setting was dubious.  Now any
        setting can be prefixed by any class name.
       </P
></LI
></UL
></DIV
><DIV
CLASS="SECT3"
><H3
CLASS="SECT3"
><A
NAME="AEN120822"
>E.32.2.6. Monitoring</A
></H3
><P
></P
><UL
><LI
><P
>        Rename <A
HREF="monitoring-stats.html#MONITORING-STATS-VIEWS-TABLE"
><TT
CLASS="STRUCTNAME"
>pg_stat_activity</TT
></A
><TT
CLASS="STRUCTFIELD"
>.procpid</TT
>
        to <TT
CLASS="STRUCTFIELD"
>pid</TT
>, to match other system tables (Magnus Hagander)
       </P
></LI
><LI
><P
>        Create a separate <TT
CLASS="STRUCTFIELD"
>pg_stat_activity</TT
> column to
        report process state (Scott Mead, Magnus Hagander)
       </P
><P
>        The previous <TT
CLASS="STRUCTFIELD"
>query</TT
> and <TT
CLASS="STRUCTFIELD"
>query_start</TT
>
        values now remain available for an idle session, allowing enhanced
        analysis.
       </P
></LI
><LI
><P
>        Rename <TT
CLASS="STRUCTNAME"
>pg_stat_activity</TT
>.<TT
CLASS="STRUCTFIELD"
>current_query</TT
> to
        <TT
CLASS="STRUCTFIELD"
>query</TT
> because it is not cleared when the query
        completes (Magnus Hagander)
       </P
></LI
><LI
><P
>        Change all <ACRONYM
CLASS="ACRONYM"
>SQL</ACRONYM
>-level statistics timing values
        to be <TT
CLASS="TYPE"
>float8</TT
> columns measured in milliseconds (Tom Lane)
       </P
><P
>        This change eliminates the designed-in assumption that the values
        are accurate to microseconds and no more (since the <TT
CLASS="TYPE"
>float8</TT
>
        values can be fractional).
        The columns affected are
        <TT
CLASS="STRUCTNAME"
>pg_stat_user_functions</TT
>.<TT
CLASS="STRUCTFIELD"
>total_time</TT
>,
        <TT
CLASS="STRUCTNAME"
>pg_stat_user_functions</TT
>.<TT
CLASS="STRUCTFIELD"
>self_time</TT
>,
        <TT
CLASS="STRUCTNAME"
>pg_stat_xact_user_functions</TT
>.<TT
CLASS="STRUCTFIELD"
>total_time</TT
>,
        and
        <TT
CLASS="STRUCTNAME"
>pg_stat_xact_user_functions</TT
>.<TT
CLASS="STRUCTFIELD"
>self_time</TT
>.
        The statistics functions underlying these columns now also return
        <TT
CLASS="TYPE"
>float8</TT
> milliseconds, rather than <TT
CLASS="TYPE"
>bigint</TT
>
        microseconds.
        <TT
CLASS="FILENAME"
>contrib/pg_stat_statements</TT
>'
        <TT
CLASS="STRUCTFIELD"
>total_time</TT
> column is now also measured in
        milliseconds.
       </P
></LI
></UL
></DIV
></DIV
><DIV
CLASS="SECT2"
><H2
CLASS="SECT2"
><A
NAME="AEN120860"
>E.32.3. Changes</A
></H2
><P
>    Below you will find a detailed account of the changes between
    <SPAN
CLASS="PRODUCTNAME"
>PostgreSQL</SPAN
> 9.2 and the previous major
    release.
   </P
><DIV
CLASS="SECT3"
><H3
CLASS="SECT3"
><A
NAME="AEN120864"
>E.32.3.1. Server</A
></H3
><DIV
CLASS="SECT4"
><H4
CLASS="SECT4"
><A
NAME="AEN120866"
>E.32.3.1.1. Performance</A
></H4
><P
></P
><UL
><LI
><P
>        Allow queries to retrieve data only from indexes, avoiding heap
        access (Robert Haas, Ibrar Ahmed, Heikki Linnakangas, Tom Lane)
       </P
><P
>        This feature is often called <I
CLASS="FIRSTTERM"
>index-only scans</I
>.
        Heap access can be skipped for heap pages containing only tuples that
        are visible to all sessions, as reported by the visibility map; so
        the benefit applies mainly to mostly-static data.  The visibility map
        was made crash-safe as a necessary part of implementing this feature.
       </P
></LI
><LI
><P
>        Add the <A
HREF="spgist.html"
>SP-GiST</A
> (Space-Partitioned
        GiST) index access method (Teodor Sigaev, Oleg Bartunov, Tom
        Lane)
       </P
><P
>        SP-GiST is comparable to GiST in flexibility, but supports
        unbalanced partitioned search structures rather than balanced
        trees.  For suitable problems, SP-GiST can be faster than GiST in both
        index build time and search time.
       </P
></LI
><LI
><P
>        Allow group commit to work effectively under heavy load (Peter
        Geoghegan, Simon Riggs, Heikki Linnakangas)
       </P
><P
>        Previously, batching of commits became ineffective as the write
        workload increased, because of internal lock contention.
       </P
></LI
><LI
><P
>        Allow uncontended locks to be managed using a new
        fast-path lock mechanism (Robert Haas)
       </P
></LI
><LI
><P
>        Reduce overhead of creating virtual transaction ID locks (Robert
        Haas)
       </P
></LI
><LI
><P
>        Reduce the overhead of serializable isolation level locks (Dan
        Ports)
       </P
></LI
><LI
><P
>        Improve PowerPC and Itanium spinlock performance (Manabu Ori,
        Robert Haas, Tom Lane)
       </P
></LI
><LI
><P
>        Reduce overhead for shared invalidation cache messages (Robert
        Haas)
       </P
></LI
><LI
><P
>        Move the frequently accessed members of the <TT
CLASS="STRUCTNAME"
>PGPROC</TT
>
        shared memory array to a separate array (Pavan
        Deolasee, Heikki Linnakangas, Robert Haas)
       </P
></LI
><LI
><P
>        Improve <TT
CLASS="COMMAND"
>COPY</TT
> performance by adding tuples to
        the heap in batches (Heikki Linnakangas)
       </P
></LI
><LI
><P
>        Improve GiST index performance for geometric data types by producing
        better trees with less memory allocation overhead (Alexander Korotkov)
       </P
></LI
><LI
><P
>        Improve GiST index build times (Alexander Korotkov, Heikki
        Linnakangas)
       </P
></LI
><LI
><P
>        Allow hint bits to be set sooner for temporary and unlogged tables
        (Robert Haas)
       </P
></LI
><LI
><P
>        Allow sorting to be performed by inlined,
        non-<ACRONYM
CLASS="ACRONYM"
>SQL</ACRONYM
>-callable comparison functions (Peter
        Geoghegan, Robert Haas, Tom Lane)
       </P
></LI
><LI
><P
>        Make the number of CLOG buffers scale based on <A
HREF="runtime-config-resource.html#GUC-SHARED-BUFFERS"
><TT
CLASS="VARNAME"
>shared_buffers</TT
></A
>
        (Robert Haas, Simon Riggs, Tom Lane)
       </P
></LI
><LI
><P
>        Improve performance of buffer pool scans that occur when tables or
        databases are dropped (Jeff Janes, Simon Riggs)
       </P
></LI
><LI
><P
>        Improve performance of checkpointer's fsync-request queue
        when many tables are being dropped or truncated (Tom Lane)
       </P
></LI
><LI
><P
>        Pass the safe number of file descriptors to child processes on Windows
        (Heikki Linnakangas)
       </P
><P
>        This allows Windows sessions to use more open file descriptors than
        before.
       </P
></LI
></UL
></DIV
><DIV
CLASS="SECT4"
><H4
CLASS="SECT4"
><A
NAME="AEN120916"
>E.32.3.1.2. Process Management</A
></H4
><P
></P
><UL
><LI
><P
>        Create a dedicated background process to perform checkpoints (Simon
        Riggs)
       </P
><P
>        Formerly the background writer did both dirty-page writing and
        checkpointing.  Separating this into two processes allows each goal
        to be accomplished more predictably.
       </P
></LI
><LI
><P
>        Improve asynchronous commit behavior by waking the walwriter sooner
        (Simon Riggs)
       </P
><P
>        Previously, only <A
HREF="runtime-config-wal.html#GUC-WAL-WRITER-DELAY"
><TT
CLASS="VARNAME"
>wal_writer_delay</TT
></A
>
        triggered <ACRONYM
CLASS="ACRONYM"
>WAL</ACRONYM
> flushing to disk; now filling a
        <ACRONYM
CLASS="ACRONYM"
>WAL</ACRONYM
> buffer also triggers <ACRONYM
CLASS="ACRONYM"
>WAL</ACRONYM
>
        writes.
       </P
></LI
><LI
><P
>        Allow the bgwriter, walwriter, checkpointer, statistics collector,
        log collector, and archiver background processes to sleep more
        efficiently during periods of inactivity (Peter Geoghegan, Tom Lane)
       </P
><P
>        This series of changes reduces the frequency of process wake-ups when
        there is nothing to do, dramatically reducing power consumption on
        idle servers.
       </P
></LI
></UL
></DIV
><DIV
CLASS="SECT4"
><H4
CLASS="SECT4"
><A
NAME="AEN120933"
>E.32.3.1.3. Optimizer</A
></H4
><P
></P
><UL
><LI
><P
>        Allow the planner to generate custom plans for specific parameter
        values even when using prepared statements
        (Tom Lane)
       </P
><P
>        In the past, a prepared statement always had a single
        <SPAN
CLASS="QUOTE"
>"generic"</SPAN
> plan that was used for all parameter values, which
        was frequently much inferior to the plans used for non-prepared
        statements containing explicit constant values.  Now, the planner
        attempts to generate custom plans for specific parameter values.
        A generic plan will only be used after custom plans have repeatedly
        proven to provide no benefit.  This change should eliminate the
        performance penalties formerly seen from use of prepared statements
        (including non-dynamic statements in PL/pgSQL).
       </P
></LI
><LI
><P
>        Improve the planner's ability to use nested loops with inner
        index scans (Tom Lane)
       </P
><P
>        The new <SPAN
CLASS="QUOTE"
>"parameterized path"</SPAN
> mechanism allows inner
        index scans to use values from relations that are more than one join
        level up from the scan.  This can greatly improve performance in
        situations where semantic restrictions (such as outer joins) limit
        the allowed join orderings.
       </P
></LI
><LI
><P
>        Improve the planning <ACRONYM
CLASS="ACRONYM"
>API</ACRONYM
> for foreign data wrappers
        (Etsuro Fujita, Shigeru Hanada, Tom Lane)
       </P
><P
>        Wrappers can now provide multiple access <SPAN
CLASS="QUOTE"
>"paths"</SPAN
> for their
        tables, allowing more flexibility in join planning.
       </P
></LI
><LI
><P
>        Recognize self-contradictory restriction clauses for non-table
        relations (Tom Lane)
       </P
><P
>        This check is only performed when <A
HREF="runtime-config-query.html#GUC-CONSTRAINT-EXCLUSION"
><TT
CLASS="VARNAME"
>constraint_exclusion</TT
></A
>
        is <TT
CLASS="LITERAL"
>on</TT
>.
       </P
></LI
><LI
><P
>        Allow <TT
CLASS="LITERAL"
>indexed_col op ANY(ARRAY[...])</TT
> conditions to be
        used in plain index scans and index-only scans (Tom Lane)
       </P
><P
>        Formerly such conditions could only be used in bitmap index scans.
       </P
></LI
><LI
><P
>        Support <CODE
CLASS="FUNCTION"
>MIN</CODE
>/<CODE
CLASS="FUNCTION"
>MAX</CODE
> index optimizations on
        <TT
CLASS="TYPE"
>boolean</TT
> columns (Marti Raudsepp)
       </P
></LI
><LI
><P
>        Account for set-returning functions in <TT
CLASS="COMMAND"
>SELECT</TT
> target
        lists when setting row count estimates (Tom Lane)
       </P
></LI
><LI
><P
>        Fix planner to handle indexes with duplicated columns more reliably
        (Tom Lane)
       </P
></LI
><LI
><P
>        Collect and use element-frequency statistics for arrays (Alexander
        Korotkov, Tom Lane)
       </P
><P
>        This change improves selectivity estimation for the array
        <TT
CLASS="LITERAL"
>&lt;@</TT
>, <TT
CLASS="LITERAL"
>&amp;&amp;</TT
>, and
        <TT
CLASS="LITERAL"
>@&gt;</TT
> operators (array containment and overlaps).
       </P
></LI
><LI
><P
>        Allow statistics to be collected for foreign tables
        (Etsuro Fujita)
       </P
></LI
><LI
><P
>        Improve cost estimates for use of partial indexes (Tom Lane)
       </P
></LI
><LI
><P
>        Improve the planner's ability to use statistics for columns
        referenced in subqueries (Tom Lane)
       </P
></LI
><LI
><P
>        Improve statistical estimates for subqueries using
        <TT
CLASS="LITERAL"
>DISTINCT</TT
> (Tom Lane)
       </P
></LI
></UL
></DIV
><DIV
CLASS="SECT4"
><H4
CLASS="SECT4"
><A
NAME="AEN120984"
>E.32.3.1.4. Authentication</A
></H4
><P
></P
><UL
><LI
><P
>        Do not treat role names and <TT
CLASS="LITERAL"
>samerole</TT
> specified in <A
HREF="auth-pg-hba-conf.html"
><TT
CLASS="FILENAME"
>pg_hba.conf</TT
></A
>
        as automatically including superusers (Andrew Dunstan)
       </P
><P
>        This makes it easier to use <TT
CLASS="LITERAL"
>reject</TT
> lines with group roles.
       </P
></LI
><LI
><P
>        Adjust <TT
CLASS="FILENAME"
>pg_hba.conf</TT
> processing to handle token
        parsing more consistently (Brendan Jurd, &Aacute;lvaro Herrera)
       </P
></LI
><LI
><P
>        Disallow empty <TT
CLASS="FILENAME"
>pg_hba.conf</TT
> files (Tom Lane)
       </P
><P
>        This was done to more quickly detect misconfiguration.
       </P
></LI
><LI
><P
>        Make superuser privilege imply replication privilege (Noah Misch)
       </P
><P
>        This avoids the need to explicitly assign such privileges.
       </P
></LI
></UL
></DIV
><DIV
CLASS="SECT4"
><H4
CLASS="SECT4"
><A
NAME="AEN121004"
>E.32.3.1.5. Monitoring</A
></H4
><P
></P
><UL
><LI
><P
>        Attempt to log the current query string during a backend crash
        (Marti Raudsepp)
       </P
></LI
><LI
><P
>        Make logging of autovacuum I/O activity more verbose (Greg
        Smith, Noah Misch)
       </P
><P
>        This logging is triggered by <A
HREF="runtime-config-autovacuum.html#GUC-LOG-AUTOVACUUM-MIN-DURATION"
><TT
CLASS="VARNAME"
>log_autovacuum_min_duration</TT
></A
>.
       </P
></LI
><LI
><P
>        Make <ACRONYM
CLASS="ACRONYM"
>WAL</ACRONYM
> replay report failures sooner
        (Fujii Masao)
       </P
><P
>        There were some cases where failures were only reported once the
        server went into master mode.
       </P
></LI
><LI
><P
>        Add <A
HREF="functions-admin.html#FUNCTIONS-ADMIN-BACKUP"
><CODE
CLASS="FUNCTION"
>pg_xlog_location_diff()</CODE
></A
>
        to simplify WAL location comparisons (Euler Taveira de Oliveira)
       </P
><P
>        This is useful for computing replication lag.
       </P
></LI
><LI
><P
>        Support configurable event log application names on Windows
        (MauMau, Magnus Hagander)
       </P
><P
>        This allows different instances to use the event log
        with different identifiers, by setting the <A
HREF="runtime-config-logging.html#GUC-EVENT-SOURCE"
><TT
CLASS="VARNAME"
>event_source</TT
></A
>
        server parameter, which is similar to how <A
HREF="runtime-config-logging.html#GUC-SYSLOG-IDENT"
><TT
CLASS="VARNAME"
>syslog_ident</TT
></A
> works.
       </P
></LI
><LI
><P
>        Change <SPAN
CLASS="QUOTE"
>"unexpected EOF"</SPAN
> messages to <TT
CLASS="LITERAL"
>DEBUG1</TT
> level,
        except when there is an open transaction (Magnus Hagander)
       </P
><P
>        This change reduces log chatter caused by applications that close
        database connections ungracefully.
       </P
></LI
></UL
></DIV
><DIV
CLASS="SECT4"
><H4
CLASS="SECT4"
><A
NAME="AEN121035"
>E.32.3.1.6. Statistical Views</A
></H4
><P
></P
><UL
><LI
><P
>        Track temporary file sizes and file counts in the <A
HREF="monitoring-stats.html#PG-STAT-DATABASE-VIEW"
><TT
CLASS="STRUCTNAME"
>pg_stat_database</TT
></A
>
        system view (Tomas Vondra)
       </P
></LI
><LI
><P
>        Add a deadlock counter to the <TT
CLASS="STRUCTNAME"
>pg_stat_database</TT
>
        system view (Magnus Hagander)
       </P
></LI
><LI
><P
>        Add a server parameter <A
HREF="runtime-config-statistics.html#GUC-TRACK-IO-TIMING"
><TT
CLASS="VARNAME"
>track_io_timing</TT
></A
>
        to track I/O timings (Ants Aasma, Robert Haas)
       </P
></LI
><LI
><P
>        Report checkpoint timing information in <A
HREF="monitoring-stats.html#PG-STAT-BGWRITER-VIEW"
><TT
CLASS="STRUCTNAME"
>pg_stat_bgwriter</TT
></A
>
        (Greg Smith, Peter Geoghegan)
       </P
></LI
></UL
></DIV
><DIV
CLASS="SECT4"
><H4
CLASS="SECT4"
><A
NAME="AEN121053"
>E.32.3.1.7. Server Settings</A
></H4
><P
></P
><UL
><LI
><P
>        Silently ignore nonexistent schemas specified in <A
HREF="runtime-config-client.html#GUC-SEARCH-PATH"
><TT
CLASS="VARNAME"
>search_path</TT
></A
> (Tom Lane)
       </P
><P
>        This makes it more convenient to use generic path settings, which
        might include some schemas that don't exist in all databases.
       </P
></LI
><LI
><P
>        Allow superusers to set <A
HREF="runtime-config-locks.html#GUC-DEADLOCK-TIMEOUT"
><TT
CLASS="VARNAME"
>deadlock_timeout</TT
></A
>
        per-session, not just per-cluster (Noah Misch)
       </P
><P
>        This allows <TT
CLASS="VARNAME"
>deadlock_timeout</TT
> to be reduced for
        transactions that are likely to be involved in a deadlock, thus
        detecting the failure more quickly.  Alternatively, increasing the
        value can be used to reduce the chances of a session being chosen for
        cancellation due to a deadlock.
       </P
></LI
><LI
><P
>        Add a server parameter <A
HREF="runtime-config-resource.html#GUC-TEMP-FILE-LIMIT"
><TT
CLASS="VARNAME"
>temp_file_limit</TT
></A
>
        to constrain temporary file space usage per session (Mark Kirkwood)
       </P
></LI
><LI
><P
>        Allow a superuser to <TT
CLASS="COMMAND"
>SET</TT
> an extension's
        superuser-only custom variable before loading the associated
        extension (Tom Lane)
       </P
><P
>        The system now remembers whether a <TT
CLASS="COMMAND"
>SET</TT
> was
        performed by a superuser, so that proper privilege checking can be
        done when the extension is loaded.
       </P
></LI
><LI
><P
>        Add <A
HREF="app-postmaster.html"
>postmaster</A
> <TT
CLASS="OPTION"
>-C</TT
>
        option to query configuration parameters (Bruce Momjian)
       </P
><P
>        This allows <SPAN
CLASS="APPLICATION"
>pg_ctl</SPAN
> to better handle cases where
        <TT
CLASS="ENVAR"
>PGDATA</TT
> or <TT
CLASS="OPTION"
>-D</TT
> points to a configuration-only
        directory.
       </P
></LI
><LI
><P
>        Replace an empty locale name with the implied value in
        <TT
CLASS="COMMAND"
>CREATE DATABASE</TT
>
        (Tom Lane)
       </P
><P
>        This prevents cases where
        <TT
CLASS="STRUCTNAME"
>pg_database</TT
>.<TT
CLASS="STRUCTFIELD"
>datcollate</TT
> or
        <TT
CLASS="STRUCTFIELD"
>datctype</TT
> could be interpreted differently after a
        server restart.
       </P
></LI
></UL
><DIV
CLASS="SECT5"
><H5
CLASS="SECT5"
><A
NAME="AEN121091"
>E.32.3.1.7.1. <TT
CLASS="FILENAME"
>postgresql.conf</TT
></A
></H5
><P
></P
><UL
><LI
><P
>        Allow multiple errors in <TT
CLASS="FILENAME"
>postgresql.conf</TT
>
        to be reported, rather than just the first one (Alexey Klyukin,
        Tom Lane)
       </P
></LI
><LI
><P
>        Allow a reload of <TT
CLASS="FILENAME"
>postgresql.conf</TT
> to be
        processed by all sessions, even if there are some settings that
        are invalid for particular sessions (Alexey Klyukin)
       </P
><P
>        Previously, such not-valid-within-session values would cause all
        setting changes to be ignored by that session.
       </P
></LI
><LI
><P
>        Add an <TT
CLASS="LITERAL"
>include_if_exists</TT
> facility for configuration
        files (Greg Smith)
       </P
><P
>        This works the same as <TT
CLASS="LITERAL"
>include</TT
>, except that an error
        is not thrown if the file is missing.
       </P
></LI
><LI
><P
>        Identify the server time zone during <SPAN
CLASS="APPLICATION"
>initdb</SPAN
>, and set
        <TT
CLASS="FILENAME"
>postgresql.conf</TT
> entries
        <A
HREF="runtime-config-client.html#GUC-TIMEZONE"
><TT
CLASS="VARNAME"
>timezone</TT
></A
> and
        <A
HREF="runtime-config-logging.html#GUC-LOG-TIMEZONE"
><TT
CLASS="VARNAME"
>log_timezone</TT
></A
>
        accordingly (Tom Lane)
       </P
><P
>        This avoids expensive time zone probes during server start.
       </P
></LI
><LI
><P
>        Fix <A
HREF="view-pg-settings.html"
><TT
CLASS="STRUCTNAME"
>pg_settings</TT
></A
> to
        report <TT
CLASS="FILENAME"
>postgresql.conf</TT
> line numbers on Windows
        (Tom Lane)
       </P
></LI
></UL
></DIV
></DIV
></DIV
><DIV
CLASS="SECT3"
><H3
CLASS="SECT3"
><A
NAME="AEN121121"
>E.32.3.2. Replication and Recovery</A
></H3
><P
></P
><UL
><LI
><P
>        Allow streaming replication slaves to forward data to other slaves
        (<A
HREF="warm-standby.html#CASCADING-REPLICATION"
><I
CLASS="FIRSTTERM"
>cascading
        replication</I
></A
>) (Fujii Masao)
       </P
><P
>        Previously, only the master server could supply streaming
        replication log files to standby servers.
       </P
></LI
><LI
><P
>        Add new <A
HREF="runtime-config-wal.html#GUC-SYNCHRONOUS-COMMIT"
><TT
CLASS="VARNAME"
>synchronous_commit</TT
></A
>
        mode <TT
CLASS="LITERAL"
>remote_write</TT
> (Fujii Masao, Simon Riggs)
       </P
><P
>        This mode waits for the standby server to write transaction data to
        its own operating system, but does not wait for the data to be
        flushed to the standby's disk.
       </P
></LI
><LI
><P
>        Add a <A
HREF="app-pgreceivexlog.html"
><SPAN
CLASS="APPLICATION"
>pg_receivexlog</SPAN
></A
>
        tool to archive WAL file changes as they are written, rather
        than waiting for completed WAL files (Magnus Hagander)
       </P
></LI
><LI
><P
>        Allow <A
HREF="app-pgbasebackup.html"
><SPAN
CLASS="APPLICATION"
>pg_basebackup</SPAN
></A
>
        to make base backups from standby servers (Jun Ishizuka, Fujii Masao)
       </P
><P
>        This feature lets the work of making new base backups be off-loaded
        from the primary server.
       </P
></LI
><LI
><P
>        Allow streaming of WAL files while <SPAN
CLASS="APPLICATION"
>pg_basebackup</SPAN
>
        is performing a backup (Magnus Hagander)
       </P
><P
>        This allows passing of WAL files to the standby before they are
        discarded on the primary.
       </P
></LI
></UL
></DIV
><DIV
CLASS="SECT3"
><H3
CLASS="SECT3"
><A
NAME="AEN121148"
>E.32.3.3. Queries</A
></H3
><P
></P
><UL
><LI
><P
>        Cancel the running query if the client gets disconnected
        (Florian Pflug)
       </P
><P
>        If the backend detects loss of client connection during a query, it
        will now cancel the query rather than attempting to finish it.
       </P
></LI
><LI
><P
>        Retain column names at run time for row expressions
        (Andrew Dunstan, Tom Lane)
       </P
><P
>        This change allows better results when a row value is converted to
        <TT
CLASS="TYPE"
>hstore</TT
> or <TT
CLASS="TYPE"
>json</TT
> type: the fields of the resulting
        value will now have the expected names.
       </P
></LI
><LI
><P
>        Improve column labels used for sub-<TT
CLASS="COMMAND"
>SELECT</TT
> results
        (Marti Raudsepp)
       </P
><P
>        Previously, the generic label <TT
CLASS="LITERAL"
>?column?</TT
> was used.
       </P
></LI
><LI
><P
>        Improve heuristics for determining the types of unknown values
        (Tom Lane)
       </P
><P
>        The longstanding rule that an unknown constant might have the
        same type as the value on the other side of the operator using it
        is now applied when considering polymorphic operators, not only
        for simple operator matches.
       </P
></LI
><LI
><P
>        Warn about creating casts to or from domain types (Robert Haas)
       </P
><P
>        Such casts have no effect.
       </P
></LI
><LI
><P
>        When a row fails a <TT
CLASS="LITERAL"
>CHECK</TT
> or <TT
CLASS="LITERAL"
>NOT NULL</TT
>
        constraint, show the row's contents as error detail (Jan
        Kundr&aacute;t)
       </P
><P
>        This should make it easier to identify which row is problematic
        when an insert or update is processing many rows.
       </P
></LI
></UL
></DIV
><DIV
CLASS="SECT3"
><H3
CLASS="SECT3"
><A
NAME="AEN121175"
>E.32.3.4. Object Manipulation</A
></H3
><P
></P
><UL
><LI
><P
>        Provide more reliable operation during concurrent
        <ACRONYM
CLASS="ACRONYM"
>DDL</ACRONYM
> (Robert Haas, Noah Misch)
       </P
><P
>        This change adds locking that should eliminate <SPAN
CLASS="QUOTE"
>"cache lookup
        failed"</SPAN
> errors in many scenarios.  Also, it is no longer possible
        to add relations to a schema that is being concurrently dropped, a
        scenario that formerly led to inconsistent system catalog contents.
       </P
></LI
><LI
><P
>        Add <TT
CLASS="LITERAL"
>CONCURRENTLY</TT
> option to <A
HREF="sql-dropindex.html"
><TT
CLASS="COMMAND"
>DROP INDEX</TT
></A
>
        (Simon Riggs)
       </P
><P
>        This allows index removal without blocking other sessions.
       </P
></LI
><LI
><P
>        Allow foreign data wrappers to have per-column options (Shigeru Hanada)
       </P
></LI
><LI
><P
>        Improve pretty-printing of view definitions (Andrew Dunstan)
       </P
></LI
></UL
><DIV
CLASS="SECT4"
><H4
CLASS="SECT4"
><A
NAME="AEN121193"
>E.32.3.4.1. Constraints</A
></H4
><P
></P
><UL
><LI
><P
>        Allow <A
HREF="ddl-constraints.html"
><TT
CLASS="LITERAL"
>CHECK</TT
></A
>
        constraints to be declared <TT
CLASS="LITERAL"
>NOT VALID</TT
> (&Aacute;lvaro
        Herrera)
       </P
><P
>        Adding a <TT
CLASS="LITERAL"
>NOT VALID</TT
> constraint does not cause the table to
        be scanned to verify that existing rows meet the constraint.
        Subsequently, newly added or updated rows are checked.
        Such constraints are ignored by the planner when considering
        <TT
CLASS="VARNAME"
>constraint_exclusion</TT
>, since it is not certain that all
        rows meet the constraint.
       </P
><P
>        The new <TT
CLASS="COMMAND"
>ALTER TABLE VALIDATE</TT
> command allows <TT
CLASS="LITERAL"
>NOT
        VALID</TT
> constraints to be checked for existing rows, after which
        they are converted into ordinary constraints.
       </P
></LI
><LI
><P
>        Allow <TT
CLASS="LITERAL"
>CHECK</TT
> constraints to be declared <TT
CLASS="LITERAL"
>NO
        INHERIT</TT
> (Nikhil Sontakke, Alex Hunsaker, &Aacute;lvaro Herrera)
       </P
><P
>        This makes them enforceable only on the parent table, not on
        child tables.
       </P
></LI
><LI
><P
>        Add the ability to <A
HREF="sql-altertable.html"
>rename</A
>
        constraints (Peter Eisentraut)
       </P
></LI
></UL
></DIV
><DIV
CLASS="SECT4"
><H4
CLASS="SECT4"
><A
NAME="AEN121215"
>E.32.3.4.2. <TT
CLASS="COMMAND"
>ALTER</TT
></A
></H4
><P
></P
><UL
><LI
><P
>        Reduce need to rebuild tables and indexes for certain <A
HREF="sql-altertable.html"
><TT
CLASS="COMMAND"
>ALTER TABLE</TT
></A
>
        ... <TT
CLASS="LITERAL"
>ALTER COLUMN TYPE</TT
> operations (Noah Misch)
       </P
><P
>        Increasing the length limit for a <TT
CLASS="TYPE"
>varchar</TT
> or <TT
CLASS="TYPE"
>varbit</TT
>
        column, or removing the limit altogether, no longer requires a table
        rewrite.  Similarly, increasing the allowable precision of a
        <TT
CLASS="TYPE"
>numeric</TT
> column, or changing a column from constrained
        <TT
CLASS="TYPE"
>numeric</TT
> to unconstrained <TT
CLASS="TYPE"
>numeric</TT
>, no longer
        requires a table rewrite.  Table rewrites are also avoided in similar
        cases involving the <TT
CLASS="TYPE"
>interval</TT
>, <TT
CLASS="TYPE"
>timestamp</TT
>, and
        <TT
CLASS="TYPE"
>timestamptz</TT
> types.
       </P
></LI
><LI
><P
>        Avoid having <A
HREF="sql-altertable.html"
><TT
CLASS="COMMAND"
>ALTER
        TABLE</TT
></A
> revalidate foreign key constraints in some
        cases where it is not necessary (Noah Misch)
       </P
></LI
><LI
><P
>        Add <TT
CLASS="LITERAL"
>IF EXISTS</TT
> options to some <TT
CLASS="COMMAND"
>ALTER</TT
>
        commands (Pavel Stehule)
       </P
><P
>        For example, <TT
CLASS="COMMAND"
>ALTER FOREIGN TABLE IF EXISTS foo RENAME
        TO bar</TT
>.
       </P
></LI
><LI
><P
>        Add <A
HREF="sql-alterforeigndatawrapper.html"
><TT
CLASS="COMMAND"
>ALTER
        FOREIGN DATA WRAPPER</TT
></A
> ... <TT
CLASS="LITERAL"
>RENAME</TT
>
        and <A
HREF="sql-alterserver.html"
><TT
CLASS="COMMAND"
>ALTER
        SERVER</TT
></A
> ... <TT
CLASS="LITERAL"
>RENAME</TT
> (Peter Eisentraut)
       </P
></LI
><LI
><P
>        Add <A
HREF="sql-alterdomain.html"
><TT
CLASS="COMMAND"
>ALTER
        DOMAIN</TT
></A
> ... <TT
CLASS="LITERAL"
>RENAME</TT
> (Peter Eisentraut)
       </P
><P
>        You could already rename domains using <TT
CLASS="COMMAND"
>ALTER
        TYPE</TT
>.
       </P
></LI
><LI
><P
>        Throw an error for <TT
CLASS="COMMAND"
>ALTER DOMAIN</TT
> ... <TT
CLASS="LITERAL"
>DROP
        CONSTRAINT</TT
> on a nonexistent constraint (Peter Eisentraut)
       </P
><P
>        An <TT
CLASS="LITERAL"
>IF EXISTS</TT
> option has been added to provide the
        previous behavior.
       </P
></LI
></UL
></DIV
><DIV
CLASS="SECT4"
><H4
CLASS="SECT4"
><A
NAME="AEN121264"
>E.32.3.4.3. <A
HREF="sql-createtable.html"
><TT
CLASS="COMMAND"
>CREATE TABLE</TT
></A
></A
></H4
><P
></P
><UL
><LI
><P
>        Allow <TT
CLASS="COMMAND"
>CREATE TABLE (LIKE ...)</TT
> from foreign
        tables, views, and composite types (Peter Eisentraut)
       </P
><P
>        For example, this allows a table to be created whose schema matches a
        view.
       </P
></LI
><LI
><P
>        Fix <TT
CLASS="COMMAND"
>CREATE TABLE (LIKE ...)</TT
> to avoid index name
        conflicts when copying index comments (Tom Lane)
       </P
></LI
><LI
><P
>        Fix <TT
CLASS="COMMAND"
>CREATE TABLE</TT
> ... <TT
CLASS="LITERAL"
>AS EXECUTE</TT
>
        to handle <TT
CLASS="LITERAL"
>WITH NO DATA</TT
> and column name specifications
        (Tom Lane)
       </P
></LI
></UL
></DIV
><DIV
CLASS="SECT4"
><H4
CLASS="SECT4"
><A
NAME="AEN121281"
>E.32.3.4.4. Object Permissions</A
></H4
><P
></P
><UL
><LI
><P
>        Add a <A
HREF="sql-createview.html"
><TT
CLASS="LITERAL"
>security_barrier</TT
></A
>
        option for views (KaiGai Kohei, Robert Haas)
       </P
><P
>        This option prevents optimizations that might allow view-protected
        data to be exposed to users, for example pushing a clause involving
        an insecure function into the <TT
CLASS="LITERAL"
>WHERE</TT
> clause of the view.
        Such views can be expected to perform more poorly than ordinary
        views.
       </P
></LI
><LI
><P
>        Add a new <A
HREF="sql-createfunction.html"
><TT
CLASS="LITERAL"
>LEAKPROOF</TT
></A
> function
        attribute to mark functions that can safely be pushed down
        into <TT
CLASS="LITERAL"
>security_barrier</TT
> views (KaiGai Kohei)
       </P
></LI
><LI
><P
>        Add support for privileges on data types (Peter Eisentraut)
       </P
><P
>        This adds support for the <ACRONYM
CLASS="ACRONYM"
>SQL</ACRONYM
>-conforming
        <TT
CLASS="LITERAL"
>USAGE</TT
> privilege on types and domains.  The intent is
        to be able to restrict which users can create dependencies on types,
        since such dependencies limit the owner's ability to alter the type.
       </P
></LI
><LI
><P
>        Check for <TT
CLASS="COMMAND"
>INSERT</TT
> privileges in <TT
CLASS="COMMAND"
>SELECT
        INTO</TT
> / <TT
CLASS="COMMAND"
>CREATE TABLE AS</TT
> (KaiGai Kohei)
       </P
><P
>        Because the object is being created by <TT
CLASS="COMMAND"
>SELECT INTO</TT
>
        or <TT
CLASS="COMMAND"
>CREATE TABLE AS</TT
>, the creator would ordinarily
        have insert permissions; but there are corner cases where this is not
        true, such as when <TT
CLASS="LITERAL"
>ALTER DEFAULT PRIVILEGES</TT
> has removed
        such permissions.
       </P
></LI
></UL
></DIV
></DIV
><DIV
CLASS="SECT3"
><H3
CLASS="SECT3"
><A
NAME="AEN121309"
>E.32.3.5. Utility Operations</A
></H3
><P
></P
><UL
><LI
><P
>        Allow <A
HREF="sql-vacuum.html"
><TT
CLASS="COMMAND"
>VACUUM</TT
></A
> to more
        easily skip pages that cannot be locked (Simon Riggs, Robert Haas)
       </P
><P
>        This change should greatly reduce the incidence of <TT
CLASS="COMMAND"
>VACUUM</TT
>
        getting <SPAN
CLASS="QUOTE"
>"stuck"</SPAN
> waiting for other sessions.
       </P
></LI
><LI
><P
>        Make <A
HREF="sql-explain.html"
><TT
CLASS="COMMAND"
>EXPLAIN</TT
></A
>
        <TT
CLASS="LITERAL"
>(BUFFERS)</TT
> count blocks dirtied and written (Robert Haas)
       </P
></LI
><LI
><P
>        Make <TT
CLASS="COMMAND"
>EXPLAIN ANALYZE</TT
> report the number of rows
        rejected by filter steps (Marko Tiikkaja)
       </P
></LI
><LI
><P
>        Allow <TT
CLASS="COMMAND"
>EXPLAIN ANALYZE</TT
> to avoid timing overhead when
        time values are not wanted (Tomas Vondra)
       </P
><P
>        This is accomplished by setting the new <TT
CLASS="LITERAL"
>TIMING</TT
> option to
        <TT
CLASS="LITERAL"
>FALSE</TT
>.
       </P
></LI
></UL
></DIV
><DIV
CLASS="SECT3"
><H3
CLASS="SECT3"
><A
NAME="AEN121333"
>E.32.3.6. Data Types</A
></H3
><P
></P
><UL
><LI
><P
>        Add support for <A
HREF="rangetypes.html"
>range data types</A
>
        (Jeff Davis, Tom Lane, Alexander Korotkov)
       </P
><P
>        A range data type stores a lower and upper bound belonging to its
        base data type.  It supports operations like contains, overlaps, and
        intersection.
       </P
></LI
><LI
><P
>        Add a <A
HREF="datatype-json.html"
><TT
CLASS="TYPE"
>JSON</TT
></A
>
        data type (Robert Haas)
       </P
><P
>        This type stores <ACRONYM
CLASS="ACRONYM"
>JSON</ACRONYM
> (JavaScript Object Notation)
        data with proper validation.
       </P
></LI
><LI
><P
>        Add <A
HREF="functions-json.html"
><CODE
CLASS="FUNCTION"
>array_to_json()</CODE
></A
>
        and <CODE
CLASS="FUNCTION"
>row_to_json()</CODE
> (Andrew Dunstan)
       </P
></LI
><LI
><P
>        Add a <A
HREF="datatype-numeric.html#DATATYPE-SERIAL"
><TT
CLASS="TYPE"
>SMALLSERIAL</TT
></A
>
        data type (Mike Pultz)
       </P
><P
>        This is like <TT
CLASS="TYPE"
>SERIAL</TT
>, except it stores the sequence in
        a two-byte integer column (<TT
CLASS="TYPE"
>int2</TT
>).
       </P
></LI
><LI
><P
>        Allow <A
HREF="sql-createdomain.html"
>domains</A
> to be
        declared <TT
CLASS="LITERAL"
>NOT VALID</TT
> (&Aacute;lvaro Herrera)
       </P
><P
>        This option can be set at domain creation time, or via <TT
CLASS="COMMAND"
>ALTER
        DOMAIN</TT
> ... <TT
CLASS="LITERAL"
>ADD CONSTRAINT</TT
> ... <TT
CLASS="LITERAL"
>NOT
        VALID</TT
>. <TT
CLASS="COMMAND"
>ALTER DOMAIN</TT
> ... <TT
CLASS="LITERAL"
>VALIDATE
        CONSTRAINT</TT
> fully validates the constraint.
       </P
></LI
><LI
><P
>        Support more locale-specific formatting options for the <A
HREF="datatype-money.html"
><TT
CLASS="TYPE"
>money</TT
></A
> data type (Tom Lane)
       </P
><P
>        Specifically, honor all the POSIX options for ordering of the value,
        sign, and currency symbol in monetary output.  Also, make sure that
        the thousands separator is only inserted to the left of the decimal
        point, as required by POSIX.
       </P
></LI
><LI
><P
>        Add bitwise <SPAN
CLASS="QUOTE"
>"and"</SPAN
>, <SPAN
CLASS="QUOTE"
>"or"</SPAN
>, and <SPAN
CLASS="QUOTE"
>"not"</SPAN
>
        operators for the <TT
CLASS="TYPE"
>macaddr</TT
> data type (Brendan Jurd)
       </P
></LI
><LI
><P
>        Allow <A
HREF="functions-xml.html#FUNCTIONS-XML-PROCESSING"
><CODE
CLASS="FUNCTION"
>xpath()</CODE
></A
> to
        return a single-element <ACRONYM
CLASS="ACRONYM"
>XML</ACRONYM
> array when supplied a
        scalar value (Florian Pflug)
       </P
><P
>        Previously, it returned an empty array.  This change will also
        cause <CODE
CLASS="FUNCTION"
>xpath_exists()</CODE
> to return true, not false,
        for such expressions.
       </P
></LI
><LI
><P
>        Improve <ACRONYM
CLASS="ACRONYM"
>XML</ACRONYM
> error handling to be more robust
        (Florian Pflug)
       </P
></LI
></UL
></DIV
><DIV
CLASS="SECT3"
><H3
CLASS="SECT3"
><A
NAME="AEN121389"
>E.32.3.7. Functions</A
></H3
><P
></P
><UL
><LI
><P
>        Allow non-superusers to use <A
HREF="functions-admin.html#FUNCTIONS-ADMIN-SIGNAL"
><CODE
CLASS="FUNCTION"
>pg_cancel_backend()</CODE
></A
>
        and <A
HREF="functions-admin.html#FUNCTIONS-ADMIN-SIGNAL"
><CODE
CLASS="FUNCTION"
>pg_terminate_backend()</CODE
></A
>
        on other sessions belonging to the same user
        (Magnus Hagander, Josh Kupershmidt, Dan Farina)
       </P
><P
>        Previously only superusers were allowed to use these functions.
       </P
></LI
><LI
><P
>        Allow importing and exporting of transaction snapshots (Joachim
        Wieland, Tom Lane)
       </P
><P
>        This allows multiple transactions to share identical views of the
        database state.
        Snapshots are exported via <A
HREF="functions-admin.html#FUNCTIONS-SNAPSHOT-SYNCHRONIZATION"
><CODE
CLASS="FUNCTION"
>pg_export_snapshot()</CODE
></A
>
        and imported via <A
HREF="sql-set-transaction.html"
><TT
CLASS="COMMAND"
>SET
        TRANSACTION SNAPSHOT</TT
></A
>.  Only snapshots from
        currently-running transactions can be imported.
       </P
></LI
><LI
><P
>        Support <A
HREF="functions-info.html#FUNCTIONS-INFO-CATALOG-TABLE"
><TT
CLASS="LITERAL"
>COLLATION
        FOR</TT
></A
> on expressions (Peter Eisentraut)
       </P
><P
>        This returns a string representing the collation of the expression.
       </P
></LI
><LI
><P
>        Add <A
HREF="functions-info.html#FUNCTIONS-INFO-SCHEMA-TABLE"
><CODE
CLASS="FUNCTION"
>pg_opfamily_is_visible()</CODE
></A
>
        (Josh Kupershmidt)
       </P
></LI
><LI
><P
>        Add a <TT
CLASS="TYPE"
>numeric</TT
> variant of <A
HREF="functions-admin.html#FUNCTIONS-ADMIN-DBSIZE"
><CODE
CLASS="FUNCTION"
>pg_size_pretty()</CODE
></A
>
        for use with <CODE
CLASS="FUNCTION"
>pg_xlog_location_diff()</CODE
> (Fujii Masao)
       </P
></LI
><LI
><P
>        Add a <A
HREF="functions-info.html#FUNCTIONS-INFO-SESSION-TABLE"
><CODE
CLASS="FUNCTION"
>pg_trigger_depth()</CODE
></A
>
        function (Kevin Grittner)
       </P
><P
>        This reports the current trigger call depth.
       </P
></LI
><LI
><P
>        Allow <A
HREF="functions-aggregate.html#FUNCTIONS-AGGREGATE-TABLE"
><CODE
CLASS="FUNCTION"
>string_agg()</CODE
></A
>
        to process <TT
CLASS="TYPE"
>bytea</TT
> values (Pavel Stehule)
       </P
></LI
><LI
><P
>        Fix regular expressions in which a back-reference occurs within
        a larger quantified subexpression (Tom Lane)
       </P
><P
>        For example, <TT
CLASS="LITERAL"
>^(\w+)( \1)+$</TT
>.  Previous releases did not
        check that the back-reference actually matched the first occurrence.
       </P
></LI
></UL
></DIV
><DIV
CLASS="SECT3"
><H3
CLASS="SECT3"
><A
NAME="AEN121435"
>E.32.3.8. <A
HREF="information-schema.html"
>Information Schema</A
></A
></H3
><P
></P
><UL
><LI
><P
>        Add information schema views
        <TT
CLASS="STRUCTNAME"
>role_udt_grants</TT
>, <TT
CLASS="STRUCTNAME"
>udt_privileges</TT
>,
        and <TT
CLASS="STRUCTNAME"
>user_defined_types</TT
> (Peter Eisentraut)
       </P
></LI
><LI
><P
>        Add composite-type attributes to the
        information schema <TT
CLASS="STRUCTNAME"
>element_types</TT
> view
        (Peter Eisentraut)
       </P
></LI
><LI
><P
>        Implement <TT
CLASS="STRUCTFIELD"
>interval_type</TT
> columns in the information
        schema (Peter Eisentraut)
       </P
><P
>        Formerly these columns read as nulls.
       </P
></LI
><LI
><P
>        Implement collation-related columns in the information schema
        <TT
CLASS="STRUCTNAME"
>attributes</TT
>, <TT
CLASS="STRUCTNAME"
>columns</TT
>,
        <TT
CLASS="STRUCTNAME"
>domains</TT
>, and <TT
CLASS="STRUCTNAME"
>element_types</TT
>
        views (Peter Eisentraut)
       </P
></LI
><LI
><P
>        Implement the <TT
CLASS="STRUCTFIELD"
>with_hierarchy</TT
> column in the
        information schema <TT
CLASS="STRUCTNAME"
>table_privileges</TT
> view (Peter
        Eisentraut)
       </P
></LI
><LI
><P
>        Add display of sequence <TT
CLASS="LITERAL"
>USAGE</TT
> privileges to information
        schema (Peter Eisentraut)
       </P
></LI
><LI
><P
>        Make the information schema show default privileges (Peter
        Eisentraut)
       </P
><P
>        Previously, non-empty default permissions were not represented in the
        views.
       </P
></LI
></UL
></DIV
><DIV
CLASS="SECT3"
><H3
CLASS="SECT3"
><A
NAME="AEN121467"
>E.32.3.9. Server-Side Languages</A
></H3
><DIV
CLASS="SECT4"
><H4
CLASS="SECT4"
><A
NAME="AEN121469"
>E.32.3.9.1. <A
HREF="plpgsql.html"
>PL/pgSQL</A
> Server-Side Language</A
></H4
><P
></P
><UL
><LI
><P
>        Allow the PL/pgSQL <TT
CLASS="COMMAND"
>OPEN</TT
> cursor command to supply
        parameters by name (Yeb Havinga)
       </P
></LI
><LI
><P
>        Add a <TT
CLASS="COMMAND"
>GET STACKED DIAGNOSTICS</TT
> PL/pgSQL command
        to retrieve exception info (Pavel Stehule)
       </P
></LI
><LI
><P
>        Speed up PL/pgSQL array assignment by caching type information
        (Pavel Stehule)
       </P
></LI
><LI
><P
>        Improve performance and memory consumption for long chains of
        <TT
CLASS="LITERAL"
>ELSIF</TT
> clauses (Tom Lane)
       </P
></LI
><LI
><P
>        Output the function signature, not just the name, in PL/pgSQL
        error messages (Pavel Stehule)
       </P
></LI
></UL
></DIV
><DIV
CLASS="SECT4"
><H4
CLASS="SECT4"
><A
NAME="AEN121486"
>E.32.3.9.2. <A
HREF="plpython.html"
>PL/Python</A
> Server-Side Language</A
></H4
><P
></P
><UL
><LI
><P
>        Add PL/Python <ACRONYM
CLASS="ACRONYM"
>SPI</ACRONYM
> cursor support (Jan
        Urbanski)
       </P
><P
>        This allows PL/Python to read partial result sets.
       </P
></LI
><LI
><P
>        Add result metadata functions to PL/Python (Peter Eisentraut)
       </P
><P
>        Specifically, this adds result object functions
        <TT
CLASS="LITERAL"
>.colnames</TT
>, <TT
CLASS="LITERAL"
>.coltypes</TT
>, and
        <TT
CLASS="LITERAL"
>.coltypmods</TT
>.
       </P
></LI
><LI
><P
>        Remove support for Python 2.2 (Peter Eisentraut)
       </P
></LI
></UL
></DIV
><DIV
CLASS="SECT4"
><H4
CLASS="SECT4"
><A
NAME="AEN121502"
>E.32.3.9.3. <A
HREF="xfunc-sql.html"
>SQL</A
> Server-Side Language</A
></H4
><P
></P
><UL
><LI
><P
>        Allow <ACRONYM
CLASS="ACRONYM"
>SQL</ACRONYM
>-language functions to reference
        parameters by name (Matthew Draper)
       </P
><P
>        To use this, simply name the function arguments and then reference
        the argument names in the <ACRONYM
CLASS="ACRONYM"
>SQL</ACRONYM
> function body.
       </P
></LI
></UL
></DIV
></DIV
><DIV
CLASS="SECT3"
><H3
CLASS="SECT3"
><A
NAME="AEN121511"
>E.32.3.10. Client Applications</A
></H3
><P
></P
><UL
><LI
><P
>        Add <A
HREF="app-initdb.html"
><SPAN
CLASS="APPLICATION"
>initdb</SPAN
></A
>
        options <TT
CLASS="OPTION"
>--auth-local</TT
> and <TT
CLASS="OPTION"
>--auth-host</TT
>
        (Peter Eisentraut)
       </P
><P
>        This allows separate control of <TT
CLASS="LITERAL"
>local</TT
> and
        <TT
CLASS="LITERAL"
>host</TT
> <TT
CLASS="FILENAME"
>pg_hba.conf</TT
> authentication
        settings.  <TT
CLASS="OPTION"
>--auth</TT
> still controls both.
       </P
></LI
><LI
><P
>        Add <TT
CLASS="OPTION"
>--replication</TT
>/<TT
CLASS="OPTION"
>--no-replication</TT
> flags to
        <A
HREF="app-createuser.html"
><SPAN
CLASS="APPLICATION"
>createuser</SPAN
></A
>
        to control replication permission (Fujii Masao)
       </P
></LI
><LI
><P
>        Add the <TT
CLASS="OPTION"
>--if-exists</TT
> option to <A
HREF="app-dropdb.html"
><SPAN
CLASS="APPLICATION"
>dropdb</SPAN
></A
> and <A
HREF="app-dropuser.html"
><SPAN
CLASS="APPLICATION"
>dropuser</SPAN
></A
> (Josh
        Kupershmidt)
       </P
></LI
><LI
><P
>        Give command-line tools the ability to specify the name of the
        database to connect to, and fall back to <TT
CLASS="LITERAL"
>template1</TT
>
        if a <TT
CLASS="LITERAL"
>postgres</TT
> database connection fails (Robert Haas)
       </P
></LI
></UL
><DIV
CLASS="SECT4"
><H4
CLASS="SECT4"
><A
NAME="AEN121542"
>E.32.3.10.1. <A
HREF="app-psql.html"
><SPAN
CLASS="APPLICATION"
>psql</SPAN
></A
></A
></H4
><P
></P
><UL
><LI
><P
>        Add a display mode to auto-expand output based on the
        display width (Peter Eisentraut)
       </P
><P
>        This adds the <TT
CLASS="LITERAL"
>auto</TT
> option to the <TT
CLASS="COMMAND"
>\x</TT
>
        command, which switches to the expanded mode when the normal
        output would be wider than the screen.
       </P
></LI
><LI
><P
>        Allow inclusion of a script file that is named relative to the
        directory of the file from which it was invoked (Gurjeet Singh)
       </P
><P
>        This is done with a new command <TT
CLASS="COMMAND"
>\ir</TT
>.
       </P
></LI
><LI
><P
>        Add support for non-<ACRONYM
CLASS="ACRONYM"
>ASCII</ACRONYM
> characters in
        <SPAN
CLASS="APPLICATION"
>psql</SPAN
> variable names (Tom Lane)
       </P
></LI
><LI
><P
>        Add support for major-version-specific <TT
CLASS="FILENAME"
>.psqlrc</TT
> files
        (Bruce Momjian)
       </P
><P
>        <SPAN
CLASS="APPLICATION"
>psql</SPAN
> already supported minor-version-specific
        <TT
CLASS="FILENAME"
>.psqlrc</TT
> files.
       </P
></LI
><LI
><P
>        Provide environment variable overrides for <SPAN
CLASS="APPLICATION"
>psql</SPAN
>
        history and startup file locations (Andrew Dunstan)
       </P
><P
>        <TT
CLASS="ENVAR"
>PSQL_HISTORY</TT
> and <TT
CLASS="ENVAR"
>PSQLRC</TT
> now
        determine these file names if set.
       </P
></LI
><LI
><P
>        Add a <TT
CLASS="COMMAND"
>\setenv</TT
> command to modify
        the environment variables passed to child processes (Andrew Dunstan)
       </P
></LI
><LI
><P
>        Name <SPAN
CLASS="APPLICATION"
>psql</SPAN
>'s temporary editor files with a
        <TT
CLASS="FILENAME"
>.sql</TT
> extension (Peter Eisentraut)
       </P
><P
>        This allows extension-sensitive editors to select the right mode.
       </P
></LI
><LI
><P
>        Allow <SPAN
CLASS="APPLICATION"
>psql</SPAN
> to use zero-byte field and record
        separators (Peter Eisentraut)
       </P
><P
>        Various shell tools use zero-byte (NUL) separators,
        e.g. <SPAN
CLASS="APPLICATION"
>find</SPAN
>.
       </P
></LI
><LI
><P
>        Make the <TT
CLASS="COMMAND"
>\timing</TT
> option report times for
        failed queries (Magnus Hagander)
       </P
><P
>        Previously times were reported only for successful queries.
       </P
></LI
><LI
><P
>        Unify and tighten <SPAN
CLASS="APPLICATION"
>psql</SPAN
>'s treatment of <TT
CLASS="COMMAND"
>\copy</TT
>
        and SQL <TT
CLASS="COMMAND"
>COPY</TT
> (Noah Misch)
       </P
><P
>        This fix makes failure behavior more predictable and honors
        <TT
CLASS="COMMAND"
>\set ON_ERROR_ROLLBACK</TT
>.
       </P
></LI
></UL
></DIV
><DIV
CLASS="SECT4"
><H4
CLASS="SECT4"
><A
NAME="AEN121596"
>E.32.3.10.2. Informational Commands</A
></H4
><P
></P
><UL
><LI
><P
>        Make <TT
CLASS="COMMAND"
>\d</TT
> on a sequence show the
        table/column name owning it (Magnus Hagander)
       </P
></LI
><LI
><P
>        Show statistics target for columns in <TT
CLASS="COMMAND"
>\d+</TT
> (Magnus
        Hagander)
       </P
></LI
><LI
><P
>        Show role password expiration dates in <TT
CLASS="COMMAND"
>\du</TT
>
        (Fabr&iacute;zio de Royes Mello)
       </P
></LI
><LI
><P
>        Display comments for casts, conversions, domains, and languages
        (Josh Kupershmidt)
       </P
><P
>        These are included in the output of <TT
CLASS="COMMAND"
>\dC+</TT
>,
        <TT
CLASS="COMMAND"
>\dc+</TT
>, <TT
CLASS="COMMAND"
>\dD+</TT
>, and <TT
CLASS="COMMAND"
>\dL</TT
> respectively.
       </P
></LI
><LI
><P
>        Display comments for <ACRONYM
CLASS="ACRONYM"
>SQL</ACRONYM
>/<ACRONYM
CLASS="ACRONYM"
>MED</ACRONYM
>
        objects (Josh Kupershmidt)
       </P
><P
>        These are included in the output of <TT
CLASS="COMMAND"
>\des+</TT
>,
        <TT
CLASS="COMMAND"
>\det+</TT
>, and <TT
CLASS="COMMAND"
>\dew+</TT
> for foreign servers, foreign
        tables, and foreign data wrappers respectively.
       </P
></LI
><LI
><P
>        Change <TT
CLASS="COMMAND"
>\dd</TT
> to display comments only for object types
        without their own backslash command (Josh Kupershmidt)
       </P
></LI
></UL
></DIV
><DIV
CLASS="SECT4"
><H4
CLASS="SECT4"
><A
NAME="AEN121626"
>E.32.3.10.3. Tab Completion</A
></H4
><P
></P
><UL
><LI
><P
>        In <SPAN
CLASS="APPLICATION"
>psql</SPAN
> tab completion, complete <ACRONYM
CLASS="ACRONYM"
>SQL</ACRONYM
>
        keywords in either upper or lower case according to the new <A
HREF="app-psql.html#APP-PSQL-VARIABLES"
><TT
CLASS="LITERAL"
>COMP_KEYWORD_CASE</TT
></A
>
        setting (Peter Eisentraut)
       </P
></LI
><LI
><P
>        Add tab completion support for
        <TT
CLASS="COMMAND"
>EXECUTE</TT
> (Andreas Karlsson)
       </P
></LI
><LI
><P
>        Allow tab completion of role references in
        <TT
CLASS="COMMAND"
>GRANT</TT
>/<TT
CLASS="COMMAND"
>REVOKE</TT
> (Peter
        Eisentraut)
       </P
></LI
><LI
><P
>        Allow tab completion of file names to supply quotes, when necessary
        (Noah Misch)
       </P
></LI
><LI
><P
>        Change tab completion support for
        <TT
CLASS="COMMAND"
>TABLE</TT
> to also include views (Magnus Hagander)
       </P
></LI
></UL
></DIV
><DIV
CLASS="SECT4"
><H4
CLASS="SECT4"
><A
NAME="AEN121647"
>E.32.3.10.4. <A
HREF="app-pgdump.html"
><SPAN
CLASS="APPLICATION"
>pg_dump</SPAN
></A
></A
></H4
><P
></P
><UL
><LI
><P
>        Add an <TT
CLASS="OPTION"
>--exclude-table-data</TT
> option to
        <SPAN
CLASS="APPLICATION"
>pg_dump</SPAN
> (Andrew Dunstan)
       </P
><P
>        This allows dumping of a table's definition but not its data,
        on a per-table basis.
       </P
></LI
><LI
><P
>        Add a <TT
CLASS="OPTION"
>--section</TT
> option to <SPAN
CLASS="APPLICATION"
>pg_dump</SPAN
>
        and <SPAN
CLASS="APPLICATION"
>pg_restore</SPAN
> (Andrew Dunstan)
       </P
><P
>        Valid values are <TT
CLASS="LITERAL"
>pre-data</TT
>, <TT
CLASS="LITERAL"
>data</TT
>,
        and <TT
CLASS="LITERAL"
>post-data</TT
>. The option can be
        given more than once to select two or more sections.
       </P
></LI
><LI
><P
>        Make <A
HREF="app-pg-dumpall.html"
><SPAN
CLASS="APPLICATION"
>pg_dumpall</SPAN
></A
> dump all
        roles first, then all configuration settings on roles (Phil Sorber)
       </P
><P
>        This allows a role's configuration settings to mention other
        roles without generating an error.
       </P
></LI
><LI
><P
>        Allow <SPAN
CLASS="APPLICATION"
>pg_dumpall</SPAN
> to avoid errors if the
        <TT
CLASS="LITERAL"
>postgres</TT
> database is missing in the new cluster
        (Robert Haas)
       </P
></LI
><LI
><P
>        Dump foreign server user mappings in user name order (Peter
        Eisentraut)
       </P
><P
>        This helps produce deterministic dump files.
       </P
></LI
><LI
><P
>        Dump operators in a predictable order (Peter Eisentraut)
       </P
></LI
><LI
><P
>        Tighten rules for when extension configuration tables are dumped
        by <SPAN
CLASS="APPLICATION"
>pg_dump</SPAN
> (Tom Lane)
       </P
></LI
><LI
><P
>        Make <SPAN
CLASS="APPLICATION"
>pg_dump</SPAN
> emit more useful dependency
        information (Tom Lane)
       </P
><P
>        The dependency links included in archive-format dumps were formerly
        of very limited use, because they frequently referenced objects that
        appeared nowhere in the dump.  Now they represent actual dependencies
        (possibly indirect) among the dumped objects.
       </P
></LI
><LI
><P
>        Improve <SPAN
CLASS="APPLICATION"
>pg_dump</SPAN
>'s performance when dumping many
        database objects (Tom Lane)
       </P
></LI
></UL
></DIV
></DIV
><DIV
CLASS="SECT3"
><H3
CLASS="SECT3"
><A
NAME="AEN121690"
>E.32.3.11. <A
HREF="libpq.html"
><SPAN
CLASS="APPLICATION"
>libpq</SPAN
></A
></A
></H3
><P
></P
><UL
><LI
><P
>        Allow <SPAN
CLASS="APPLICATION"
>libpq</SPAN
> connection strings to have the format of a
        <A
HREF="libpq-connect.html#LIBPQ-CONNSTRING"
><ACRONYM
CLASS="ACRONYM"
>URI</ACRONYM
></A
>
        (Alexander Shulgin)
       </P
><P
>        The syntax begins with <TT
CLASS="LITERAL"
>postgres://</TT
>.  This can allow
        applications to avoid implementing their own parser for URIs
        representing database connections.
       </P
></LI
><LI
><P
>        Add a <A
HREF="libpq-connect.html#LIBPQ-CONNECT-SSLCOMPRESSION"
>connection
        option</A
> to disable <ACRONYM
CLASS="ACRONYM"
>SSL</ACRONYM
> compression
        (Laurenz Albe)
       </P
><P
>        This can be used to remove the overhead of <ACRONYM
CLASS="ACRONYM"
>SSL</ACRONYM
>
        compression on fast networks.
       </P
></LI
><LI
><P
>        Add a <A
HREF="libpq-single-row-mode.html"
>single-row processing
        mode</A
> for better handling of large result sets
        (Kyotaro Horiguchi, Marko Kreen)
       </P
><P
>        Previously, <SPAN
CLASS="APPLICATION"
>libpq</SPAN
> always collected the entire query
        result in memory before passing it back to the application.
       </P
></LI
><LI
><P
>        Add <TT
CLASS="LITERAL"
>const</TT
> qualifiers to the declarations of the functions
        <CODE
CLASS="FUNCTION"
>PQconnectdbParams</CODE
>, <CODE
CLASS="FUNCTION"
>PQconnectStartParams</CODE
>,
        and <CODE
CLASS="FUNCTION"
>PQpingParams</CODE
> (Lionel Elie Mamane)
       </P
></LI
><LI
><P
>        Allow the <TT
CLASS="FILENAME"
>.pgpass</TT
> file to include escaped characters
        in the password field (Robert Haas)
       </P
></LI
><LI
><P
>        Make library functions use <CODE
CLASS="FUNCTION"
>abort()</CODE
> instead of
        <CODE
CLASS="FUNCTION"
>exit()</CODE
> when it is necessary to terminate the process
        (Peter Eisentraut)
       </P
><P
>        This choice does not interfere with the normal exit codes used by the
        program, and generates a signal that can be caught by the caller.
       </P
></LI
></UL
></DIV
><DIV
CLASS="SECT3"
><H3
CLASS="SECT3"
><A
NAME="AEN121727"
>E.32.3.12. Source Code</A
></H3
><P
></P
><UL
><LI
><P
>        Remove dead ports (Peter Eisentraut)
       </P
><P
>        The following platforms are no longer supported: dgux,
        nextstep, sunos4, svr4, ultrix4, univel, bsdi.
       </P
></LI
><LI
><P
>        Add support for building with <A
HREF="install-windows.html"
>MS
        Visual Studio 2010</A
> (Brar Piening)
       </P
></LI
><LI
><P
>        Enable compiling with the MinGW-w64 32-bit compiler (Lars Kanis)
       </P
></LI
><LI
><P
>        Install <TT
CLASS="FILENAME"
>plpgsql.h</TT
> into <TT
CLASS="FILENAME"
>include/server</TT
> during installation
        (Heikki Linnakangas)
       </P
></LI
><LI
><P
>        Improve the latch facility to include detection of postmaster death
        (Peter Geoghegan, Heikki Linnakangas, Tom Lane)
       </P
><P
>        This eliminates one of the main reasons that background processes
        formerly had to wake up to poll for events.
       </P
></LI
><LI
><P
>        Use C flexible array members, where supported (Peter Eisentraut)
       </P
></LI
><LI
><P
>        Improve the concurrent transaction regression tests
        (<SPAN
CLASS="APPLICATION"
>isolationtester</SPAN
>) (Noah Misch)
       </P
></LI
><LI
><P
>        Modify <SPAN
CLASS="APPLICATION"
>thread_test</SPAN
> to create its test files in
        the current directory, rather than <TT
CLASS="FILENAME"
>/tmp</TT
> (Bruce Momjian)
       </P
></LI
><LI
><P
>        Improve flex and bison warning and error reporting (Tom Lane)
       </P
></LI
><LI
><P
>        Add memory barrier support (Robert Haas)
       </P
><P
>        This is currently unused.
       </P
></LI
><LI
><P
>        Modify pgindent to use a typedef file (Bruce Momjian)
       </P
></LI
><LI
><P
>        Add a hook for processing messages due to be sent to the server
        log (Martin Pihlak)
       </P
></LI
><LI
><P
>        Add object access hooks for <TT
CLASS="COMMAND"
>DROP</TT
> commands
        (KaiGai Kohei)
       </P
></LI
><LI
><P
>        Centralize <TT
CLASS="COMMAND"
>DROP</TT
> handling for some object types
        (KaiGai Kohei)
       </P
></LI
><LI
><P
>        Add a <SPAN
CLASS="APPLICATION"
>pg_upgrade</SPAN
> test suite (Peter Eisentraut)
       </P
></LI
><LI
><P
>        Sync regular expression code with <ACRONYM
CLASS="ACRONYM"
>TCL</ACRONYM
> 8.5.11
        and improve internal processing (Tom Lane)
       </P
></LI
><LI
><P
>        Move <ACRONYM
CLASS="ACRONYM"
>CRC</ACRONYM
> tables to libpgport, and provide them
        in a separate include file (Daniel Farina)
       </P
></LI
><LI
><P
>        Add options to <SPAN
CLASS="APPLICATION"
>git_changelog</SPAN
> for use in major
        release note creation (Bruce Momjian)
       </P
></LI
><LI
><P
>        Support Linux's <TT
CLASS="FILENAME"
>/proc/self/oom_score_adj</TT
> API (Tom Lane)
       </P
></LI
></UL
></DIV
><DIV
CLASS="SECT3"
><H3
CLASS="SECT3"
><A
NAME="AEN121784"
>E.32.3.13. Additional Modules</A
></H3
><P
></P
><UL
><LI
><P
>        Improve efficiency of <A
HREF="dblink.html"
>dblink</A
> by using
        libpq's new single-row processing mode (Kyotaro Horiguchi, Marko
        Kreen)
       </P
><P
>        This improvement does not apply to
        <CODE
CLASS="FUNCTION"
>dblink_send_query()</CODE
>/<CODE
CLASS="FUNCTION"
>dblink_get_result()</CODE
>.
       </P
></LI
><LI
><P
>        Support <TT
CLASS="LITERAL"
>force_not_null</TT
> option in <A
HREF="file-fdw.html"
>file_fdw</A
> (Shigeru Hanada)
       </P
></LI
><LI
><P
>        Implement dry-run mode for <A
HREF="pgarchivecleanup.html"
><SPAN
CLASS="APPLICATION"
>pg_archivecleanup</SPAN
></A
>
        (Gabriele Bartolini)
       </P
><P
>        This only outputs the names of files to be deleted.
       </P
></LI
><LI
><P
>        Add new <A
HREF="pgbench.html"
>pgbench</A
> switches
        <TT
CLASS="OPTION"
>--unlogged-tables</TT
>, <TT
CLASS="OPTION"
>--tablespace</TT
>, and
        <TT
CLASS="OPTION"
>--index-tablespace</TT
> (Robert Haas)
       </P
></LI
><LI
><P
>        Change <A
HREF="pgtestfsync.html"
><SPAN
CLASS="APPLICATION"
>pg_test_fsync</SPAN
></A
> to test
        for a fixed amount of time, rather than a fixed number of cycles
        (Bruce Momjian)
       </P
><P
>        The <TT
CLASS="OPTION"
>-o</TT
>/cycles option was removed, and
        <TT
CLASS="OPTION"
>-s</TT
>/seconds added.
       </P
></LI
><LI
><P
>        Add a <A
HREF="pgtesttiming.html"
><SPAN
CLASS="APPLICATION"
>pg_test_timing</SPAN
></A
>
        utility to measure clock monotonicity and timing overhead (Ants
        Aasma, Greg Smith)
       </P
></LI
><LI
><P
>        Add a <A
HREF="tcn.html"
>tcn</A
> (triggered change notification)
        module to generate <TT
CLASS="COMMAND"
>NOTIFY</TT
> events on table changes
        (Kevin Grittner)
       </P
></LI
></UL
><DIV
CLASS="SECT4"
><H4
CLASS="SECT4"
><A
NAME="AEN121823"
>E.32.3.13.1. <A
HREF="pgupgrade.html"
><SPAN
CLASS="APPLICATION"
>pg_upgrade</SPAN
></A
></A
></H4
><P
></P
><UL
><LI
><P
>        Adjust <SPAN
CLASS="APPLICATION"
>pg_upgrade</SPAN
> environment variables (Bruce
        Momjian)
       </P
><P
>        Rename data, bin, and port environment
        variables to begin with <TT
CLASS="LITERAL"
>PG</TT
>, and support
        <TT
CLASS="ENVAR"
>PGPORTOLD</TT
>/<TT
CLASS="ENVAR"
>PGPORTNEW</TT
>, to replace
        <TT
CLASS="ENVAR"
>PGPORT</TT
>.
       </P
></LI
><LI
><P
>        Overhaul <SPAN
CLASS="APPLICATION"
>pg_upgrade</SPAN
> logging and failure reporting
        (Bruce Momjian)
       </P
><P
>        Create four append-only log files, and delete them on success.
        Add <TT
CLASS="OPTION"
>-r</TT
>/<TT
CLASS="OPTION"
>--retain</TT
> option to unconditionally
        retain these files.  Also remove <SPAN
CLASS="APPLICATION"
>pg_upgrade</SPAN
> options
        <TT
CLASS="OPTION"
>-g</TT
>/<TT
CLASS="OPTION"
>-G</TT
>/<TT
CLASS="OPTION"
>-l</TT
> options as unnecessary,
        and tighten log file permissions.
       </P
></LI
><LI
><P
>        Make <SPAN
CLASS="APPLICATION"
>pg_upgrade</SPAN
> create a script to incrementally
        generate more accurate optimizer statistics (Bruce Momjian)
       </P
><P
>        This reduces the time needed to generate minimal cluster statistics
        after an upgrade.
       </P
></LI
><LI
><P
>        Allow <SPAN
CLASS="APPLICATION"
>pg_upgrade</SPAN
> to upgrade an old cluster that
        does not have a <TT
CLASS="LITERAL"
>postgres</TT
> database (Bruce Momjian)
       </P
></LI
><LI
><P
>        Allow <SPAN
CLASS="APPLICATION"
>pg_upgrade</SPAN
> to handle cases where some
        old or new databases are missing, as long as they are empty
        (Bruce Momjian)
       </P
></LI
><LI
><P
>        Allow <SPAN
CLASS="APPLICATION"
>pg_upgrade</SPAN
> to handle configuration-only
        directory installations (Bruce Momjian)
       </P
></LI
><LI
><P
>        In <SPAN
CLASS="APPLICATION"
>pg_upgrade</SPAN
>, add <TT
CLASS="OPTION"
>-o</TT
>/<TT
CLASS="OPTION"
>-O</TT
>
        options to pass parameters to the servers (Bruce Momjian)
       </P
><P
>        This is useful for configuration-only directory installs.
       </P
></LI
><LI
><P
>        Change <SPAN
CLASS="APPLICATION"
>pg_upgrade</SPAN
> to use port 50432 by default
        (Bruce Momjian)
       </P
><P
>        This helps avoid unintended client connections during the upgrade.
       </P
></LI
><LI
><P
>        Reduce cluster locking in <SPAN
CLASS="APPLICATION"
>pg_upgrade</SPAN
> (Bruce
        Momjian)
       </P
><P
>        Specifically, only lock the old cluster if link mode is used,
        and do it right after the schema is restored.
       </P
></LI
></UL
></DIV
><DIV
CLASS="SECT4"
><H4
CLASS="SECT4"
><A
NAME="AEN121874"
>E.32.3.13.2. <A
HREF="pgstatstatements.html"
><SPAN
CLASS="APPLICATION"
>pg_stat_statements</SPAN
></A
></A
></H4
><P
></P
><UL
><LI
><P
>        Allow <SPAN
CLASS="APPLICATION"
>pg_stat_statements</SPAN
> to aggregate similar
        queries via SQL text normalization (Peter Geoghegan, Tom Lane)
       </P
><P
>        Users with applications that use non-parameterized SQL will now
        be able to monitor query performance without detailed log analysis.
       </P
></LI
><LI
><P
>        Add dirtied and written block counts and read/write times to
        <SPAN
CLASS="APPLICATION"
>pg_stat_statements</SPAN
> (Robert Haas, Ants Aasma)
       </P
></LI
><LI
><P
>        Prevent <SPAN
CLASS="APPLICATION"
>pg_stat_statements</SPAN
> from double-counting
        <TT
CLASS="COMMAND"
>PREPARE</TT
> and <TT
CLASS="COMMAND"
>EXECUTE</TT
> commands
        (Tom Lane)
       </P
></LI
></UL
></DIV
><DIV
CLASS="SECT4"
><H4
CLASS="SECT4"
><A
NAME="AEN121891"
>E.32.3.13.3. <A
HREF="sepgsql.html"
>sepgsql</A
></A
></H4
><P
></P
><UL
><LI
><P
>        Support <TT
CLASS="LITERAL"
>SECURITY LABEL</TT
> on global objects (KaiGai
        Kohei, Robert Haas)
       </P
><P
>        Specifically, add security labels to databases,
        tablespaces, and roles.
       </P
></LI
><LI
><P
>        Allow sepgsql to honor database labels (KaiGai Kohei)
       </P
></LI
><LI
><P
>        Perform sepgsql permission checks during the creation of various
        objects (KaiGai Kohei)
       </P
></LI
><LI
><P
>        Add <CODE
CLASS="FUNCTION"
>sepgsql_setcon()</CODE
> and related functions to control
        the sepgsql security domain (KaiGai Kohei)
       </P
></LI
><LI
><P
>        Add a user space access cache to sepgsql to improve performance
        (KaiGai Kohei)
       </P
></LI
></UL
></DIV
></DIV
><DIV
CLASS="SECT3"
><H3
CLASS="SECT3"
><A
NAME="AEN121908"
>E.32.3.14. Documentation</A
></H3
><P
></P
><UL
><LI
><P
>        Add a rule to optionally build HTML documentation using the
        stylesheet from the website (Magnus Hagander)
       </P
><P
>        Use <TT
CLASS="COMMAND"
>gmake STYLE=website draft</TT
>.
       </P
></LI
><LI
><P
>        Improve <TT
CLASS="COMMAND"
>EXPLAIN</TT
> documentation (Tom Lane)
       </P
></LI
><LI
><P
>        Document that user/database names are preserved with double-quoting
        by command-line tools like <SPAN
CLASS="APPLICATION"
>vacuumdb</SPAN
>  (Bruce
        Momjian)
       </P
></LI
><LI
><P
>        Document the actual string returned by the client for MD5
        authentication (Cyan Ogilvie)
       </P
></LI
><LI
><P
>        Deprecate use of <TT
CLASS="LITERAL"
>GLOBAL</TT
> and <TT
CLASS="LITERAL"
>LOCAL</TT
> in
        <TT
CLASS="COMMAND"
>CREATE TEMP TABLE</TT
> (Noah Misch)
       </P
><P
>        <SPAN
CLASS="PRODUCTNAME"
>PostgreSQL</SPAN
> has long treated these keyword as no-ops,
        and continues to do so; but in future they might mean what the SQL
        standard says they mean, so applications should avoid using them.
       </P
></LI
></UL
></DIV
></DIV
></DIV
><DIV
CLASS="NAVFOOTER"
><HR
ALIGN="LEFT"
WIDTH="100%"><TABLE
SUMMARY="Footer navigation table"
WIDTH="100%"
BORDER="0"
CELLPADDING="0"
CELLSPACING="0"
><TR
><TD
WIDTH="33%"
ALIGN="left"
VALIGN="top"
><A
HREF="release-9-2-1.html"
ACCESSKEY="P"
>Prev</A
></TD
><TD
WIDTH="34%"
ALIGN="center"
VALIGN="top"
><A
HREF="index.html"
ACCESSKEY="H"
>Home</A
></TD
><TD
WIDTH="33%"
ALIGN="right"
VALIGN="top"
><A
HREF="release-9-1-22.html"
ACCESSKEY="N"
>Next</A
></TD
></TR
><TR
><TD
WIDTH="33%"
ALIGN="left"
VALIGN="top"
>Release 9.2.1</TD
><TD
WIDTH="34%"
ALIGN="center"
VALIGN="top"
><A
HREF="release.html"
ACCESSKEY="U"
>Up</A
></TD
><TD
WIDTH="33%"
ALIGN="right"
VALIGN="top"
>Release 9.1.22</TD
></TR
></TABLE
></DIV
></BODY
></HTML
>