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 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
4848bool 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-
5650static void _bt_restscan (IndexScanDesc scan );
5751static void btbuildCallback (Relation index ,
5852 HeapTuple htup ,
Original file line number Diff line number Diff line change 1515# # postgresql.conf.sample, it should be listed here so that it
1616# # can be ignored
1717INTENTIONALLY_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?
Original file line number Diff line number Diff line change 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;
6060extern bool autocommit ;
6161extern int CommitDelay ;
6262extern int CommitSiblings ;
63- extern bool FixBTree ;
6463
6564#ifdef HAVE_SYSLOG
6665extern 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
You can’t perform that action at this time.
0 commit comments