|
4 | 4 | * Support for grand unified configuration scheme, including SET |
5 | 5 | * command, configuration file, and command line options. |
6 | 6 | * |
7 | | - * $Header: /cvsroot/pgsql/src/backend/utils/misc/guc.c,v 1.28 2001/01/24 18:37:31 momjian Exp $ |
| 7 | + * $Header: /cvsroot/pgsql/src/backend/utils/misc/guc.c,v 1.29 2001/02/07 23:36:22 vadim Exp $ |
8 | 8 | * |
9 | 9 | * Copyright 2000 by PostgreSQL Global Development Group |
10 | 10 | * Written by Peter Eisentraut <peter_e@gmx.net>. |
@@ -42,6 +42,8 @@ extern int XLOGfiles; |
42 | 42 | externintXLOG_DEBUG; |
43 | 43 | externintCommitDelay; |
44 | 44 |
|
| 45 | +externboolFixBTree; |
| 46 | + |
45 | 47 | #ifdefENABLE_SYSLOG |
46 | 48 | externchar*Syslog_facility; |
47 | 49 | externchar*Syslog_ident; |
@@ -218,6 +220,8 @@ ConfigureNamesBool[] = |
218 | 220 |
|
219 | 221 | {"sql_inheritance",PGC_USERSET,&SQL_inheritance, true}, |
220 | 222 |
|
| 223 | +{"fixbtree",PGC_POSTMASTER,&FixBTree, true}, |
| 224 | + |
221 | 225 | {NULL,0,NULL, false} |
222 | 226 | }; |
223 | 227 |
|
|