Location via proxy:   [ UP ]  
[Report a bug]   [Manage cookies]                
Skip to content

Commit 3981f21

Browse files
committed
Remove no-longer-used FixBTree GUC variable.
1 parent 61b22d3 commit 3981f21

File tree

3 files changed

+3
-14
lines changed

3 files changed

+3
-14
lines changed

src/backend/access/nbtree/nbtree.c

Lines changed: 1 addition & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
* Portions Copyright (c) 1994, Regents of the University of California
1313
*
1414
* 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 $
1616
*
1717
*-------------------------------------------------------------------------
1818
*/
@@ -47,12 +47,6 @@ typedef struct
4747

4848
bool FastBuild = true; /* use SORT instead of insertion build */
4949

50-
/*
51-
* TEMPORARY FLAG FOR TESTING NEW FIX TREE
52-
* CODE WITHOUT AFFECTING ANYONE ELSE
53-
*/
54-
bool FixBTree = true;
55-
5650
static void _bt_restscan(IndexScanDesc scan);
5751
static void btbuildCallback(Relation index,
5852
HeapTuple htup,

src/backend/utils/misc/check_guc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
## postgresql.conf.sample, it should be listed here so that it
1616
## can be ignored
1717
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"
1919

2020
### What options are listed in postgresql.conf.sample, but don't appear
2121
### in guc.c?

src/backend/utils/misc/guc.c

Lines changed: 1 addition & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
* command, configuration file, and command line options.
66
* See src/backend/utils/misc/README for more information.
77
*
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 $
99
*
1010
* Copyright 2000 by PostgreSQL Global Development Group
1111
* Written by Peter Eisentraut <peter_e@gmx.net>.
@@ -60,7 +60,6 @@ extern int CheckPointTimeout;
6060
extern bool autocommit;
6161
extern int CommitDelay;
6262
extern int CommitSiblings;
63-
extern bool FixBTree;
6463

6564
#ifdef HAVE_SYSLOG
6665
extern char *Syslog_facility;
@@ -497,10 +496,6 @@ static struct config_bool
497496
{"australian_timezones", PGC_USERSET}, &Australian_timezones,
498497
false, ClearDateCache, NULL
499498
},
500-
{
501-
{"fixbtree", PGC_POSTMASTER}, &FixBTree,
502-
true, NULL, NULL
503-
},
504499
{
505500
{"password_encryption", PGC_USERSET}, &Password_encryption,
506501
true, NULL, NULL

0 commit comments

Comments
 (0)