~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
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<HTML
><HEAD
><TITLE
>Client Connection Defaults</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="Server Configuration"
HREF="runtime-config.html"><LINK
REL="PREVIOUS"
TITLE="Automatic Vacuuming"
HREF="runtime-config-autovacuum.html"><LINK
REL="NEXT"
TITLE="Lock Management"
HREF="runtime-config-locks.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="Automatic Vacuuming"
HREF="runtime-config-autovacuum.html"
ACCESSKEY="P"
>Prev</A
></TD
><TD
WIDTH="10%"
ALIGN="left"
VALIGN="top"
><A
HREF="runtime-config.html"
ACCESSKEY="U"
>Up</A
></TD
><TD
WIDTH="60%"
ALIGN="center"
VALIGN="bottom"
>Chapter 18. Server Configuration</TD
><TD
WIDTH="20%"
ALIGN="right"
VALIGN="top"
><A
TITLE="Lock Management"
HREF="runtime-config-locks.html"
ACCESSKEY="N"
>Next</A
></TD
></TR
></TABLE
><HR
ALIGN="LEFT"
WIDTH="100%"></DIV
><DIV
CLASS="SECT1"
><H1
CLASS="SECT1"
><A
NAME="RUNTIME-CONFIG-CLIENT"
>18.11. Client Connection Defaults</A
></H1
><DIV
CLASS="SECT2"
><H2
CLASS="SECT2"
><A
NAME="RUNTIME-CONFIG-CLIENT-STATEMENT"
>18.11.1. Statement Behavior</A
></H2
><P
></P
><DIV
CLASS="VARIABLELIST"
><DL
><DT
><A
NAME="GUC-SEARCH-PATH"
></A
><TT
CLASS="VARNAME"
>search_path</TT
> (<TT
CLASS="TYPE"
>string</TT
>)</DT
><DD
><P
>        This variable specifies the order in which schemas are searched
        when an object (table, data type, function, etc.) is referenced by a
        simple name with no schema specified.  When there are objects of
        identical names in different schemas, the one found first
        in the search path is used.  An object that is not in any of the
        schemas in the search path can only be referenced by specifying
        its containing schema with a qualified (dotted) name.
       </P
><P
>        The value for <TT
CLASS="VARNAME"
>search_path</TT
> must be a comma-separated
        list of schema names.  Any name that is not an existing schema, or is
        a schema for which the user does not have <TT
CLASS="LITERAL"
>USAGE</TT
>
        permission, is silently ignored.
       </P
><P
>        If one of the list items is the special name
        <TT
CLASS="LITERAL"
>$user</TT
>, then the schema having the name returned by
        <CODE
CLASS="FUNCTION"
>SESSION_USER</CODE
> is substituted, if there is such a schema
        and the user has <TT
CLASS="LITERAL"
>USAGE</TT
> permission for it.
        (If not, <TT
CLASS="LITERAL"
>$user</TT
> is ignored.)
       </P
><P
>        The system catalog schema, <TT
CLASS="LITERAL"
>pg_catalog</TT
>, is always
        searched, whether it is mentioned in the path or not.  If it is
        mentioned in the path then it will be searched in the specified
        order.  If <TT
CLASS="LITERAL"
>pg_catalog</TT
> is not in the path then it will
        be searched <SPAN
CLASS="emphasis"
><I
CLASS="EMPHASIS"
>before</I
></SPAN
> searching any of the path items.
       </P
><P
>        Likewise, the current session's temporary-table schema,
        <TT
CLASS="LITERAL"
>pg_temp_<TT
CLASS="REPLACEABLE"
><I
>nnn</I
></TT
></TT
>, is always searched if it
        exists.  It can be explicitly listed in the path by using the
        alias <TT
CLASS="LITERAL"
>pg_temp</TT
>.  If it is not listed in the path then
        it is searched first (even before <TT
CLASS="LITERAL"
>pg_catalog</TT
>).  However,
        the temporary schema is only searched for relation (table, view,
        sequence, etc) and data type names.  It is never searched for
        function or operator names.
       </P
><P
>        When objects are created without specifying a particular target
        schema, they will be placed in the first valid schema named in
        <TT
CLASS="VARNAME"
>search_path</TT
>.  An error is reported if the search
        path is empty.
       </P
><P
>        The default value for this parameter is
        <TT
CLASS="LITERAL"
>"$user", public</TT
>.
        This setting supports shared use of a database (where no users
        have private schemas, and all share use of <TT
CLASS="LITERAL"
>public</TT
>),
        private per-user schemas, and combinations of these.  Other
        effects can be obtained by altering the default search path
        setting, either globally or per-user.
       </P
><P
>        The current effective value of the search path can be examined
        via the <ACRONYM
CLASS="ACRONYM"
>SQL</ACRONYM
> function
        <CODE
CLASS="FUNCTION"
>current_schemas</CODE
>
        (see <A
HREF="functions-info.html"
>Section 9.25</A
>).
        This is not quite the same as
        examining the value of <TT
CLASS="VARNAME"
>search_path</TT
>, since
        <CODE
CLASS="FUNCTION"
>current_schemas</CODE
> shows how the items
        appearing in <TT
CLASS="VARNAME"
>search_path</TT
> were resolved.
       </P
><P
>        For more information on schema handling, see <A
HREF="ddl-schemas.html"
>Section 5.7</A
>.
       </P
></DD
><DT
><A
NAME="GUC-DEFAULT-TABLESPACE"
></A
><TT
CLASS="VARNAME"
>default_tablespace</TT
> (<TT
CLASS="TYPE"
>string</TT
>)</DT
><DD
><P
>        This variable specifies the default tablespace in which to create
        objects (tables and indexes) when a <TT
CLASS="COMMAND"
>CREATE</TT
> command does
        not explicitly specify a tablespace.
       </P
><P
>        The value is either the name of a tablespace, or an empty string
        to specify using the default tablespace of the current database.
        If the value does not match the name of any existing tablespace,
        <SPAN
CLASS="PRODUCTNAME"
>PostgreSQL</SPAN
> will automatically use the default
        tablespace of the current database.  If a nondefault tablespace
        is specified, the user must have <TT
CLASS="LITERAL"
>CREATE</TT
> privilege
        for it, or creation attempts will fail.
       </P
><P
>        This variable is not used for temporary tables; for them,
        <A
HREF="runtime-config-client.html#GUC-TEMP-TABLESPACES"
>temp_tablespaces</A
> is consulted instead.
       </P
><P
>        This variable is also not used when creating databases.
        By default, a new database inherits its tablespace setting from
        the template database it is copied from.
       </P
><P
>        For more information on tablespaces,
        see <A
HREF="manage-ag-tablespaces.html"
>Section 21.6</A
>.
       </P
></DD
><DT
><A
NAME="GUC-TEMP-TABLESPACES"
></A
><TT
CLASS="VARNAME"
>temp_tablespaces</TT
> (<TT
CLASS="TYPE"
>string</TT
>)</DT
><DD
><P
>        This variable specifies tablespaces in which to create temporary
        objects (temp tables and indexes on temp tables) when a
        <TT
CLASS="COMMAND"
>CREATE</TT
> command does not explicitly specify a tablespace.
        Temporary files for purposes such as sorting large data sets
        are also created in these tablespaces.
       </P
><P
>        The value is a list of names of tablespaces.  When there is more than
        one name in the list, <SPAN
CLASS="PRODUCTNAME"
>PostgreSQL</SPAN
> chooses a random
        member of the list each time a temporary object is to be created;
        except that within a transaction, successively created temporary
        objects are placed in successive tablespaces from the list.
        If the selected element of the list is an empty string,
        <SPAN
CLASS="PRODUCTNAME"
>PostgreSQL</SPAN
> will automatically use the default
        tablespace of the current database instead.
       </P
><P
>        When <TT
CLASS="VARNAME"
>temp_tablespaces</TT
> is set interactively, specifying a
        nonexistent tablespace is an error, as is specifying a tablespace for
        which the user does not have <TT
CLASS="LITERAL"
>CREATE</TT
> privilege.  However,
        when using a previously set value, nonexistent tablespaces are
        ignored, as are tablespaces for which the user lacks
        <TT
CLASS="LITERAL"
>CREATE</TT
> privilege.  In particular, this rule applies when
        using a value set in <TT
CLASS="FILENAME"
>postgresql.conf</TT
>.
       </P
><P
>        The default value is an empty string, which results in all temporary
        objects being created in the default tablespace of the current
        database.
       </P
><P
>        See also <A
HREF="runtime-config-client.html#GUC-DEFAULT-TABLESPACE"
>default_tablespace</A
>.
       </P
></DD
><DT
><A
NAME="GUC-CHECK-FUNCTION-BODIES"
></A
><TT
CLASS="VARNAME"
>check_function_bodies</TT
> (<TT
CLASS="TYPE"
>boolean</TT
>)</DT
><DD
><P
>        This parameter is normally on. When set to <TT
CLASS="LITERAL"
>off</TT
>, it
        disables validation of the function body string during <A
HREF="sql-createfunction.html"
>CREATE FUNCTION</A
>.  Disabling validation avoids side
        effects of the validation process and avoids false positives due
        to problems such as forward references.  Set this parameter
        to <TT
CLASS="LITERAL"
>off</TT
> before loading functions on behalf of other
        users; <SPAN
CLASS="APPLICATION"
>pg_dump</SPAN
> does so automatically.
       </P
></DD
><DT
><A
NAME="GUC-DEFAULT-TRANSACTION-ISOLATION"
></A
><TT
CLASS="VARNAME"
>default_transaction_isolation</TT
> (<TT
CLASS="TYPE"
>enum</TT
>)</DT
><DD
><P
>        Each SQL transaction has an isolation level, which can be
        either <SPAN
CLASS="QUOTE"
>"read uncommitted"</SPAN
>, <SPAN
CLASS="QUOTE"
>"read
        committed"</SPAN
>, <SPAN
CLASS="QUOTE"
>"repeatable read"</SPAN
>, or
        <SPAN
CLASS="QUOTE"
>"serializable"</SPAN
>.  This parameter controls the
        default isolation level of each new transaction. The default
        is <SPAN
CLASS="QUOTE"
>"read committed"</SPAN
>.
       </P
><P
>        Consult <A
HREF="mvcc.html"
>Chapter 13</A
> and <A
HREF="sql-set-transaction.html"
>SET TRANSACTION</A
> for more information.
       </P
></DD
><DT
><A
NAME="GUC-DEFAULT-TRANSACTION-READ-ONLY"
></A
><TT
CLASS="VARNAME"
>default_transaction_read_only</TT
> (<TT
CLASS="TYPE"
>boolean</TT
>)</DT
><DD
><P
>        A read-only SQL transaction cannot alter non-temporary tables.
        This parameter controls the default read-only status of each new
        transaction. The default is <TT
CLASS="LITERAL"
>off</TT
> (read/write).
       </P
><P
>        Consult <A
HREF="sql-set-transaction.html"
>SET TRANSACTION</A
> for more information.
       </P
></DD
><DT
><A
NAME="GUC-DEFAULT-TRANSACTION-DEFERRABLE"
></A
><TT
CLASS="VARNAME"
>default_transaction_deferrable</TT
> (<TT
CLASS="TYPE"
>boolean</TT
>)</DT
><DD
><P
>        When running at the <TT
CLASS="LITERAL"
>serializable</TT
> isolation level,
        a deferrable read-only SQL transaction may be delayed before
        it is allowed to proceed.  However, once it begins executing
        it does not incur any of the overhead required to ensure
        serializability; so serialization code will have no reason to
        force it to abort because of concurrent updates, making this
        option suitable for long-running read-only transactions.
        </P
><P
>        This parameter controls the default deferrable status of each
        new transaction.  It currently has no effect on read-write
        transactions or those operating at isolation levels lower
        than <TT
CLASS="LITERAL"
>serializable</TT
>. The default is <TT
CLASS="LITERAL"
>off</TT
>.
       </P
><P
>        Consult <A
HREF="sql-set-transaction.html"
>SET TRANSACTION</A
> for more information.
       </P
></DD
><DT
><A
NAME="GUC-SESSION-REPLICATION-ROLE"
></A
><TT
CLASS="VARNAME"
>session_replication_role</TT
> (<TT
CLASS="TYPE"
>enum</TT
>)</DT
><DD
><P
>        Controls firing of replication-related triggers and rules for the
        current session.  Setting this variable requires
        superuser privilege and results in discarding any previously cached
        query plans.  Possible values are <TT
CLASS="LITERAL"
>origin</TT
> (the default),
        <TT
CLASS="LITERAL"
>replica</TT
> and <TT
CLASS="LITERAL"
>local</TT
>.
        See <A
HREF="sql-altertable.html"
>ALTER TABLE</A
> for
        more information.
       </P
></DD
><DT
><A
NAME="GUC-STATEMENT-TIMEOUT"
></A
><TT
CLASS="VARNAME"
>statement_timeout</TT
> (<TT
CLASS="TYPE"
>integer</TT
>)</DT
><DD
><P
>        Abort any statement that takes more than the specified number of
        milliseconds, starting from the time the command arrives at the server
        from the client.  If <TT
CLASS="VARNAME"
>log_min_error_statement</TT
> is set to
        <TT
CLASS="LITERAL"
>ERROR</TT
> or lower, the statement that timed out will also be
        logged.  A value of zero (the default) turns this off.
       </P
><P
>        Setting <TT
CLASS="VARNAME"
>statement_timeout</TT
> in
        <TT
CLASS="FILENAME"
>postgresql.conf</TT
> is not recommended because it would
        affect all sessions.
       </P
></DD
><DT
><A
NAME="GUC-LOCK-TIMEOUT"
></A
><TT
CLASS="VARNAME"
>lock_timeout</TT
> (<TT
CLASS="TYPE"
>integer</TT
>)</DT
><DD
><P
>        Abort any statement that waits longer than the specified number of
        milliseconds while attempting to acquire a lock on a table, index,
        row, or other database object.  The time limit applies separately to
        each lock acquisition attempt.  The limit applies both to explicit
        locking requests (such as <TT
CLASS="COMMAND"
>LOCK TABLE</TT
>, or <TT
CLASS="COMMAND"
>SELECT
        FOR UPDATE</TT
> without <TT
CLASS="LITERAL"
>NOWAIT</TT
>) and to implicitly-acquired
        locks.  If <TT
CLASS="VARNAME"
>log_min_error_statement</TT
> is set to
        <TT
CLASS="LITERAL"
>ERROR</TT
> or lower, the statement that timed out will be
        logged.  A value of zero (the default) turns this off.
       </P
><P
>        Unlike <TT
CLASS="VARNAME"
>statement_timeout</TT
>, this timeout can only occur
        while waiting for locks.  Note that if <TT
CLASS="VARNAME"
>statement_timeout</TT
>
        is nonzero, it is rather pointless to set <TT
CLASS="VARNAME"
>lock_timeout</TT
> to
        the same or larger value, since the statement timeout would always
        trigger first.
       </P
><P
>        Setting <TT
CLASS="VARNAME"
>lock_timeout</TT
> in
        <TT
CLASS="FILENAME"
>postgresql.conf</TT
> is not recommended because it would
        affect all sessions.
       </P
></DD
><DT
><A
NAME="GUC-VACUUM-FREEZE-TABLE-AGE"
></A
><TT
CLASS="VARNAME"
>vacuum_freeze_table_age</TT
> (<TT
CLASS="TYPE"
>integer</TT
>)</DT
><DD
><P
>        <TT
CLASS="COMMAND"
>VACUUM</TT
> performs a whole-table scan if the table's
        <TT
CLASS="STRUCTNAME"
>pg_class</TT
>.<TT
CLASS="STRUCTFIELD"
>relfrozenxid</TT
> field has reached
        the age specified by this setting.  The default is 150 million
        transactions.  Although users can set this value anywhere from zero to
        two billions, <TT
CLASS="COMMAND"
>VACUUM</TT
> will silently limit the effective value
        to 95% of <A
HREF="runtime-config-autovacuum.html#GUC-AUTOVACUUM-FREEZE-MAX-AGE"
>autovacuum_freeze_max_age</A
>, so that a
        periodical manual <TT
CLASS="COMMAND"
>VACUUM</TT
> has a chance to run before an
        anti-wraparound autovacuum is launched for the table. For more
        information see
        <A
HREF="routine-vacuuming.html#VACUUM-FOR-WRAPAROUND"
>Section 23.1.5</A
>.
       </P
></DD
><DT
><A
NAME="GUC-VACUUM-FREEZE-MIN-AGE"
></A
><TT
CLASS="VARNAME"
>vacuum_freeze_min_age</TT
> (<TT
CLASS="TYPE"
>integer</TT
>)</DT
><DD
><P
>        Specifies the cutoff age (in transactions) that <TT
CLASS="COMMAND"
>VACUUM</TT
>
        should use to decide whether to replace transaction IDs with
        <TT
CLASS="LITERAL"
>FrozenXID</TT
> while scanning a table.
        The default is 50 million transactions.  Although
        users can set this value anywhere from zero to one billion,
        <TT
CLASS="COMMAND"
>VACUUM</TT
> will silently limit the effective value to half
        the value of <A
HREF="runtime-config-autovacuum.html#GUC-AUTOVACUUM-FREEZE-MAX-AGE"
>autovacuum_freeze_max_age</A
>, so
        that there is not an unreasonably short time between forced
        autovacuums.  For more information see <A
HREF="routine-vacuuming.html#VACUUM-FOR-WRAPAROUND"
>Section 23.1.5</A
>.
       </P
></DD
><DT
><A
NAME="GUC-VACUUM-MULTIXACT-FREEZE-TABLE-AGE"
></A
><TT
CLASS="VARNAME"
>vacuum_multixact_freeze_table_age</TT
> (<TT
CLASS="TYPE"
>integer</TT
>)</DT
><DD
><P
>        <TT
CLASS="COMMAND"
>VACUUM</TT
> performs a whole-table scan if the table's
        <TT
CLASS="STRUCTNAME"
>pg_class</TT
>.<TT
CLASS="STRUCTFIELD"
>relminmxid</TT
> field has reached
        the age specified by this setting.  The default is 150 million multixacts.
        Although users can set this value anywhere from zero to two billions,
        <TT
CLASS="COMMAND"
>VACUUM</TT
> will silently limit the effective value to 95% of
        <A
HREF="runtime-config-autovacuum.html#GUC-AUTOVACUUM-MULTIXACT-FREEZE-MAX-AGE"
>autovacuum_multixact_freeze_max_age</A
>, so that a
        periodical manual <TT
CLASS="COMMAND"
>VACUUM</TT
> has a chance to run before an
        anti-wraparound is launched for the table.
        For more information see <A
HREF="routine-vacuuming.html#VACUUM-FOR-MULTIXACT-WRAPAROUND"
>Section 23.1.5.1</A
>.
       </P
></DD
><DT
><A
NAME="GUC-VACUUM-MULTIXACT-FREEZE-MIN-AGE"
></A
><TT
CLASS="VARNAME"
>vacuum_multixact_freeze_min_age</TT
> (<TT
CLASS="TYPE"
>integer</TT
>)</DT
><DD
><P
>        Specifies the cutoff age (in multixacts) that <TT
CLASS="COMMAND"
>VACUUM</TT
>
        should use to decide whether to replace multixact IDs with a newer
        transaction ID or multixact ID while scanning a table.  The default
        is 5 million multixacts.
        Although users can set this value anywhere from zero to one billion,
        <TT
CLASS="COMMAND"
>VACUUM</TT
> will silently limit the effective value to half
        the value of <A
HREF="runtime-config-autovacuum.html#GUC-AUTOVACUUM-MULTIXACT-FREEZE-MAX-AGE"
>autovacuum_multixact_freeze_max_age</A
>,
        so that there is not an unreasonably short time between forced
        autovacuums.
        For more information see <A
HREF="routine-vacuuming.html#VACUUM-FOR-MULTIXACT-WRAPAROUND"
>Section 23.1.5.1</A
>.
       </P
></DD
><DT
><A
NAME="GUC-BYTEA-OUTPUT"
></A
><TT
CLASS="VARNAME"
>bytea_output</TT
> (<TT
CLASS="TYPE"
>enum</TT
>)</DT
><DD
><P
>        Sets the output format for values of type <TT
CLASS="TYPE"
>bytea</TT
>.
        Valid values are <TT
CLASS="LITERAL"
>hex</TT
> (the default)
        and <TT
CLASS="LITERAL"
>escape</TT
> (the traditional PostgreSQL
        format).  See <A
HREF="datatype-binary.html"
>Section 8.4</A
> for more
        information.  The <TT
CLASS="TYPE"
>bytea</TT
> type always
        accepts both formats on input, regardless of this setting.
       </P
></DD
><DT
><A
NAME="GUC-XMLBINARY"
></A
><TT
CLASS="VARNAME"
>xmlbinary</TT
> (<TT
CLASS="TYPE"
>enum</TT
>)</DT
><DD
><P
>        Sets how binary values are to be encoded in XML.  This applies
        for example when <TT
CLASS="TYPE"
>bytea</TT
> values are converted to
        XML by the functions <CODE
CLASS="FUNCTION"
>xmlelement</CODE
> or
        <CODE
CLASS="FUNCTION"
>xmlforest</CODE
>.  Possible values are
        <TT
CLASS="LITERAL"
>base64</TT
> and <TT
CLASS="LITERAL"
>hex</TT
>, which
        are both defined in the XML Schema standard.  The default is
        <TT
CLASS="LITERAL"
>base64</TT
>.  For further information about
        XML-related functions, see <A
HREF="functions-xml.html"
>Section 9.14</A
>.
       </P
><P
>        The actual choice here is mostly a matter of taste,
        constrained only by possible restrictions in client
        applications.  Both methods support all possible values,
        although the hex encoding will be somewhat larger than the
        base64 encoding.
       </P
></DD
><DT
><A
NAME="GUC-XMLOPTION"
></A
><TT
CLASS="VARNAME"
>xmloption</TT
> (<TT
CLASS="TYPE"
>enum</TT
>)</DT
><DD
><P
>        Sets whether <TT
CLASS="LITERAL"
>DOCUMENT</TT
> or
        <TT
CLASS="LITERAL"
>CONTENT</TT
> is implicit when converting between
        XML and character string values.  See <A
HREF="datatype-xml.html"
>Section 8.13</A
> for a description of this.  Valid
        values are <TT
CLASS="LITERAL"
>DOCUMENT</TT
> and
        <TT
CLASS="LITERAL"
>CONTENT</TT
>.  The default is
        <TT
CLASS="LITERAL"
>CONTENT</TT
>.
       </P
><P
>        According to the SQL standard, the command to set this option is
</P><PRE
CLASS="SYNOPSIS"
>SET XML OPTION { DOCUMENT | CONTENT };</PRE
><P>
        This syntax is also available in PostgreSQL.
       </P
></DD
></DL
></DIV
></DIV
><DIV
CLASS="SECT2"
><H2
CLASS="SECT2"
><A
NAME="RUNTIME-CONFIG-CLIENT-FORMAT"
>18.11.2. Locale and Formatting</A
></H2
><P
></P
><DIV
CLASS="VARIABLELIST"
><DL
><DT
><A
NAME="GUC-DATESTYLE"
></A
><TT
CLASS="VARNAME"
>DateStyle</TT
> (<TT
CLASS="TYPE"
>string</TT
>)</DT
><DD
><P
>        Sets the display format for date and time values, as well as the
        rules for interpreting ambiguous date input values. For
        historical reasons, this variable contains two independent
        components: the output format specification (<TT
CLASS="LITERAL"
>ISO</TT
>,
        <TT
CLASS="LITERAL"
>Postgres</TT
>, <TT
CLASS="LITERAL"
>SQL</TT
>, or <TT
CLASS="LITERAL"
>German</TT
>)
        and the input/output specification for year/month/day ordering
        (<TT
CLASS="LITERAL"
>DMY</TT
>, <TT
CLASS="LITERAL"
>MDY</TT
>, or <TT
CLASS="LITERAL"
>YMD</TT
>). These
        can be set separately or together. The keywords <TT
CLASS="LITERAL"
>Euro</TT
>
        and <TT
CLASS="LITERAL"
>European</TT
> are synonyms for <TT
CLASS="LITERAL"
>DMY</TT
>; the
        keywords <TT
CLASS="LITERAL"
>US</TT
>, <TT
CLASS="LITERAL"
>NonEuro</TT
>, and
        <TT
CLASS="LITERAL"
>NonEuropean</TT
> are synonyms for <TT
CLASS="LITERAL"
>MDY</TT
>. See
        <A
HREF="datatype-datetime.html"
>Section 8.5</A
> for more information. The
        built-in default is <TT
CLASS="LITERAL"
>ISO, MDY</TT
>, but
        <SPAN
CLASS="APPLICATION"
>initdb</SPAN
> will initialize the
        configuration file with a setting that corresponds to the
        behavior of the chosen <TT
CLASS="VARNAME"
>lc_time</TT
> locale.
       </P
></DD
><DT
><A
NAME="GUC-INTERVALSTYLE"
></A
><TT
CLASS="VARNAME"
>IntervalStyle</TT
> (<TT
CLASS="TYPE"
>enum</TT
>)</DT
><DD
><P
>        Sets the display format for interval values.
        The value <TT
CLASS="LITERAL"
>sql_standard</TT
> will produce
        output matching <ACRONYM
CLASS="ACRONYM"
>SQL</ACRONYM
> standard interval literals.
        The value <TT
CLASS="LITERAL"
>postgres</TT
> (which is the default) will produce
        output matching <SPAN
CLASS="PRODUCTNAME"
>PostgreSQL</SPAN
> releases prior to 8.4
        when the <A
HREF="runtime-config-client.html#GUC-DATESTYLE"
>DateStyle</A
>
        parameter was set to <TT
CLASS="LITERAL"
>ISO</TT
>.
        The value <TT
CLASS="LITERAL"
>postgres_verbose</TT
> will produce output
        matching <SPAN
CLASS="PRODUCTNAME"
>PostgreSQL</SPAN
> releases prior to 8.4
        when the <TT
CLASS="VARNAME"
>DateStyle</TT
>
        parameter was set to non-<TT
CLASS="LITERAL"
>ISO</TT
> output.
        The value <TT
CLASS="LITERAL"
>iso_8601</TT
> will produce output matching the time
        interval <SPAN
CLASS="QUOTE"
>"format with designators"</SPAN
> defined in section
        4.4.3.2 of ISO 8601.
       </P
><P
>        The <TT
CLASS="VARNAME"
>IntervalStyle</TT
> parameter also affects the
        interpretation of ambiguous interval input.  See
        <A
HREF="datatype-datetime.html#DATATYPE-INTERVAL-INPUT"
>Section 8.5.4</A
> for more information.
       </P
></DD
><DT
><A
NAME="GUC-TIMEZONE"
></A
><TT
CLASS="VARNAME"
>TimeZone</TT
> (<TT
CLASS="TYPE"
>string</TT
>)</DT
><DD
><P
>        Sets the time zone for displaying and interpreting time stamps.
        The built-in default is <TT
CLASS="LITERAL"
>GMT</TT
>, but that is typically
        overridden in <TT
CLASS="FILENAME"
>postgresql.conf</TT
>; <SPAN
CLASS="APPLICATION"
>initdb</SPAN
>
        will install a setting there corresponding to its system environment.
        See <A
HREF="datatype-datetime.html#DATATYPE-TIMEZONES"
>Section 8.5.3</A
> for more information.
       </P
></DD
><DT
><A
NAME="GUC-TIMEZONE-ABBREVIATIONS"
></A
><TT
CLASS="VARNAME"
>timezone_abbreviations</TT
> (<TT
CLASS="TYPE"
>string</TT
>)</DT
><DD
><P
>        Sets the collection of time zone abbreviations that will be accepted
        by the server for datetime input.  The default is <TT
CLASS="LITERAL"
>'Default'</TT
>,
        which is a collection that works in most of the world; there are
        also <TT
CLASS="LITERAL"
>'Australia'</TT
> and <TT
CLASS="LITERAL"
>'India'</TT
>,
        and other collections can be defined for a particular installation.
        See <A
HREF="datetime-config-files.html"
>Section B.3</A
> for more information.
       </P
></DD
><DT
><A
NAME="GUC-EXTRA-FLOAT-DIGITS"
></A
><TT
CLASS="VARNAME"
>extra_float_digits</TT
> (<TT
CLASS="TYPE"
>integer</TT
>)</DT
><DD
><P
>        This parameter adjusts the number of digits displayed for
        floating-point values, including <TT
CLASS="TYPE"
>float4</TT
>, <TT
CLASS="TYPE"
>float8</TT
>,
        and geometric data types.  The parameter value is added to the
        standard number of digits (<TT
CLASS="LITERAL"
>FLT_DIG</TT
> or <TT
CLASS="LITERAL"
>DBL_DIG</TT
>
        as appropriate).  The value can be set as high as 3, to include
        partially-significant digits; this is especially useful for dumping
        float data that needs to be restored exactly.  Or it can be set
        negative to suppress unwanted digits.
        See also <A
HREF="datatype-numeric.html#DATATYPE-FLOAT"
>Section 8.1.3</A
>.
       </P
></DD
><DT
><A
NAME="GUC-CLIENT-ENCODING"
></A
><TT
CLASS="VARNAME"
>client_encoding</TT
> (<TT
CLASS="TYPE"
>string</TT
>)</DT
><DD
><P
>        Sets the client-side encoding (character set).
        The default is to use the database encoding.
        The character sets supported by the <SPAN
CLASS="PRODUCTNAME"
>PostgreSQL</SPAN
>
        server are described in <A
HREF="multibyte.html#MULTIBYTE-CHARSET-SUPPORTED"
>Section 22.3.1</A
>.
       </P
></DD
><DT
><A
NAME="GUC-LC-MESSAGES"
></A
><TT
CLASS="VARNAME"
>lc_messages</TT
> (<TT
CLASS="TYPE"
>string</TT
>)</DT
><DD
><P
>        Sets the language in which messages are displayed.  Acceptable
        values are system-dependent; see <A
HREF="locale.html"
>Section 22.1</A
> for
        more information.  If this variable is set to the empty string
        (which is the default) then the value is inherited from the
        execution environment of the server in a system-dependent way.
       </P
><P
>        On some systems, this locale category does not exist.  Setting
        this variable will still work, but there will be no effect.
        Also, there is a chance that no translated messages for the
        desired language exist.  In that case you will continue to see
        the English messages.
       </P
><P
>        Only superusers can change this setting, because it affects the
        messages sent to the server log as well as to the client, and
        an improper value might obscure the readability of the server
        logs.
       </P
></DD
><DT
><A
NAME="GUC-LC-MONETARY"
></A
><TT
CLASS="VARNAME"
>lc_monetary</TT
> (<TT
CLASS="TYPE"
>string</TT
>)</DT
><DD
><P
>        Sets the locale to use for formatting monetary amounts, for
        example with the <CODE
CLASS="FUNCTION"
>to_char</CODE
> family of
        functions.  Acceptable values are system-dependent; see <A
HREF="locale.html"
>Section 22.1</A
> for more information.  If this variable is
        set to the empty string (which is the default) then the value
        is inherited from the execution environment of the server in a
        system-dependent way.
       </P
></DD
><DT
><A
NAME="GUC-LC-NUMERIC"
></A
><TT
CLASS="VARNAME"
>lc_numeric</TT
> (<TT
CLASS="TYPE"
>string</TT
>)</DT
><DD
><P
>        Sets the locale to use for formatting numbers, for example
        with the <CODE
CLASS="FUNCTION"
>to_char</CODE
> family of
        functions. Acceptable values are system-dependent; see <A
HREF="locale.html"
>Section 22.1</A
> for more information.  If this variable is
        set to the empty string (which is the default) then the value
        is inherited from the execution environment of the server in a
        system-dependent way.
       </P
></DD
><DT
><A
NAME="GUC-LC-TIME"
></A
><TT
CLASS="VARNAME"
>lc_time</TT
> (<TT
CLASS="TYPE"
>string</TT
>)</DT
><DD
><P
>        Sets the locale to use for formatting dates and times, for example
        with the <CODE
CLASS="FUNCTION"
>to_char</CODE
> family of
        functions. Acceptable values are system-dependent; see <A
HREF="locale.html"
>Section 22.1</A
> for more information.  If this variable is
        set to the empty string (which is the default) then the value
        is inherited from the execution environment of the server in a
        system-dependent way.
       </P
></DD
><DT
><A
NAME="GUC-DEFAULT-TEXT-SEARCH-CONFIG"
></A
><TT
CLASS="VARNAME"
>default_text_search_config</TT
> (<TT
CLASS="TYPE"
>string</TT
>)</DT
><DD
><P
>        Selects the text search configuration that is used by those variants
        of the text search functions that do not have an explicit argument
        specifying the configuration.
        See <A
HREF="textsearch.html"
>Chapter 12</A
> for further information.
        The built-in default is <TT
CLASS="LITERAL"
>pg_catalog.simple</TT
>, but
        <SPAN
CLASS="APPLICATION"
>initdb</SPAN
> will initialize the
        configuration file with a setting that corresponds to the
        chosen <TT
CLASS="VARNAME"
>lc_ctype</TT
> locale, if a configuration
        matching that locale can be identified.
       </P
></DD
></DL
></DIV
></DIV
><DIV
CLASS="SECT2"
><H2
CLASS="SECT2"
><A
NAME="RUNTIME-CONFIG-CLIENT-OTHER"
>18.11.3. Other Defaults</A
></H2
><P
></P
><DIV
CLASS="VARIABLELIST"
><DL
><DT
><A
NAME="GUC-DYNAMIC-LIBRARY-PATH"
></A
><TT
CLASS="VARNAME"
>dynamic_library_path</TT
> (<TT
CLASS="TYPE"
>string</TT
>)</DT
><DD
><P
>        If a dynamically loadable module needs to be opened and the
        file name specified in the <TT
CLASS="COMMAND"
>CREATE FUNCTION</TT
> or
        <TT
CLASS="COMMAND"
>LOAD</TT
> command
        does not have a directory component (i.e., the
        name does not contain a slash), the system will search this
        path for the required file.
       </P
><P
>        The value for <TT
CLASS="VARNAME"
>dynamic_library_path</TT
> must be a
        list of absolute directory paths separated by colons (or semi-colons
        on Windows).  If a list element starts
        with the special string <TT
CLASS="LITERAL"
>$libdir</TT
>, the
        compiled-in <SPAN
CLASS="PRODUCTNAME"
>PostgreSQL</SPAN
> package
        library directory is substituted for <TT
CLASS="LITERAL"
>$libdir</TT
>; this
        is where the modules provided by the standard
        <SPAN
CLASS="PRODUCTNAME"
>PostgreSQL</SPAN
> distribution are installed.
        (Use <TT
CLASS="LITERAL"
>pg_config --pkglibdir</TT
> to find out the name of
        this directory.) For example:
</P><PRE
CLASS="PROGRAMLISTING"
>dynamic_library_path = '/usr/local/lib/postgresql:/home/my_project/lib:$libdir'</PRE
><P>
        or, in a Windows environment:
</P><PRE
CLASS="PROGRAMLISTING"
>dynamic_library_path = 'C:\tools\postgresql;H:\my_project\lib;$libdir'</PRE
><P>
       </P
><P
>        The default value for this parameter is
        <TT
CLASS="LITERAL"
>'$libdir'</TT
>. If the value is set to an empty
        string, the automatic path search is turned off.
       </P
><P
>        This parameter can be changed at run time by superusers, but a
        setting done that way will only persist until the end of the
        client connection, so this method should be reserved for
        development purposes. The recommended way to set this parameter
        is in the <TT
CLASS="FILENAME"
>postgresql.conf</TT
> configuration
        file.
       </P
></DD
><DT
><A
NAME="GUC-GIN-FUZZY-SEARCH-LIMIT"
></A
><TT
CLASS="VARNAME"
>gin_fuzzy_search_limit</TT
> (<TT
CLASS="TYPE"
>integer</TT
>)</DT
><DD
><P
>        Soft upper limit of the size of the set returned by GIN index scans. For more
        information see <A
HREF="gin-tips.html"
>Section 57.4</A
>.
       </P
></DD
><DT
><A
NAME="GUC-LOCAL-PRELOAD-LIBRARIES"
></A
><TT
CLASS="VARNAME"
>local_preload_libraries</TT
> (<TT
CLASS="TYPE"
>string</TT
>)</DT
><DD
><P
>        This variable specifies one or more shared libraries that are
        to be preloaded at connection start.  If more than one library
        is to be loaded, separate their names with commas.  All library
        names are converted to lower case unless double-quoted.
        This parameter cannot be changed after the start of a particular
        session.
       </P
><P
>        Because this is not a superuser-only option, the libraries
        that can be loaded are restricted to those appearing in the
        <TT
CLASS="FILENAME"
>plugins</TT
> subdirectory of the installation's
        standard library directory.  (It is the database administrator's
        responsibility to ensure that only <SPAN
CLASS="QUOTE"
>"safe"</SPAN
> libraries
        are installed there.)  Entries in <TT
CLASS="VARNAME"
>local_preload_libraries</TT
>
        can specify this directory explicitly, for example
        <TT
CLASS="LITERAL"
>$libdir/plugins/mylib</TT
>, or just specify
        the library name &mdash; <TT
CLASS="LITERAL"
>mylib</TT
> would have
        the same effect as <TT
CLASS="LITERAL"
>$libdir/plugins/mylib</TT
>.
       </P
><P
>        Unlike <A
HREF="runtime-config-resource.html#GUC-SHARED-PRELOAD-LIBRARIES"
>shared_preload_libraries</A
>, there is no
        performance advantage to loading a library at session
        start rather than when it is first used.  Rather, the intent of
        this feature is to allow debugging or performance-measurement
        libraries to be loaded into specific sessions without an explicit
        <TT
CLASS="COMMAND"
>LOAD</TT
> command being given.  For example, debugging could
        be enabled for a session by setting this parameter via the
        <TT
CLASS="ENVAR"
>PGOPTIONS</TT
> environment variable.
       </P
><P
>        If a specified library is not found,
        the connection attempt will fail.
       </P
><P
>        Every  PostgreSQL-supported library has a <SPAN
CLASS="QUOTE"
>"magic
        block"</SPAN
> that is checked to guarantee compatibility.
        For this reason, non-PostgreSQL libraries cannot be
        loaded in this way.
       </P
></DD
></DL
></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="runtime-config-autovacuum.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="runtime-config-locks.html"
ACCESSKEY="N"
>Next</A
></TD
></TR
><TR
><TD
WIDTH="33%"
ALIGN="left"
VALIGN="top"
>Automatic Vacuuming</TD
><TD
WIDTH="34%"
ALIGN="center"
VALIGN="top"
><A
HREF="runtime-config.html"
ACCESSKEY="U"
>Up</A
></TD
><TD
WIDTH="33%"
ALIGN="right"
VALIGN="top"
>Lock Management</TD
></TR
></TABLE
></DIV
></BODY
></HTML
>