File tree Expand file tree Collapse file tree 3 files changed +3
-14
lines changed Expand file tree Collapse file tree 3 files changed +3
-14
lines changed Original file line number Diff line number Diff line change 12
12
* Portions Copyright (c) 1994, Regents of the University of California
13
13
*
14
14
* IDENTIFICATION
15
- * $Header: /cvsroot/pgsql/src/backend/access/nbtree/nbtree.c,v 1.98 2003/02/23 22:43:08 tgl Exp $
15
+ * $Header: /cvsroot/pgsql/src/backend/access/nbtree/nbtree.c,v 1.99 2003/02/23 23:27:21 tgl Exp $
16
16
*
17
17
*-------------------------------------------------------------------------
18
18
*/
@@ -47,12 +47,6 @@ typedef struct
47
47
48
48
bool FastBuild = true; /* use SORT instead of insertion build */
49
49
50
- /*
51
- * TEMPORARY FLAG FOR TESTING NEW FIX TREE
52
- * CODE WITHOUT AFFECTING ANYONE ELSE
53
- */
54
- bool FixBTree = true;
55
-
56
50
static void _bt_restscan (IndexScanDesc scan );
57
51
static void btbuildCallback (Relation index ,
58
52
HeapTuple htup ,
Original file line number Diff line number Diff line change 15
15
# # postgresql.conf.sample, it should be listed here so that it
16
16
# # can be ignored
17
17
INTENTIONALLY_NOT_INCLUDED=" pre_auth_delay lc_messages lc_monetary \
18
- lc_time lc_numeric fixbtree server_encoding session_authorization"
18
+ lc_time lc_numeric server_encoding session_authorization"
19
19
20
20
# ## What options are listed in postgresql.conf.sample, but don't appear
21
21
# ## in guc.c?
Original file line number Diff line number Diff line change 5
5
* command, configuration file, and command line options.
6
6
* See src/backend/utils/misc/README for more information.
7
7
*
8
- * $Header: /cvsroot/pgsql/src/backend/utils/misc/guc.c,v 1.114 2003/02/06 20:25:33 tgl Exp $
8
+ * $Header: /cvsroot/pgsql/src/backend/utils/misc/guc.c,v 1.115 2003/02/23 23:27:21 tgl Exp $
9
9
*
10
10
* Copyright 2000 by PostgreSQL Global Development Group
11
11
* Written by Peter Eisentraut <peter_e@gmx.net>.
@@ -60,7 +60,6 @@ extern int CheckPointTimeout;
60
60
extern bool autocommit ;
61
61
extern int CommitDelay ;
62
62
extern int CommitSiblings ;
63
- extern bool FixBTree ;
64
63
65
64
#ifdef HAVE_SYSLOG
66
65
extern char * Syslog_facility ;
@@ -497,10 +496,6 @@ static struct config_bool
497
496
{"australian_timezones" , PGC_USERSET }, & Australian_timezones ,
498
497
false, ClearDateCache , NULL
499
498
},
500
- {
501
- {"fixbtree" , PGC_POSTMASTER }, & FixBTree ,
502
- true, NULL , NULL
503
- },
504
499
{
505
500
{"password_encryption" , PGC_USERSET }, & Password_encryption ,
506
501
true, NULL , NULL
You can’t perform that action at this time.
0 commit comments