diff options
author | Bruce Momjian <bruce@momjian.us> | 2002-11-10 00:38:21 +0000 |
---|---|---|
committer | Bruce Momjian <bruce@momjian.us> | 2002-11-10 00:38:21 +0000 |
commit | 7aeab94adf2a7e1ad0d0a32ee4bdc6b30e1cadeb (patch) | |
tree | 4ed13e5f07e32e3d3fe26ed9b961e275c2eeb7b8 /src | |
parent | c600a6ac4724ac24cfcbf852837dad4ff772bc47 (diff) | |
download | postgresql-7aeab94adf2a7e1ad0d0a32ee4bdc6b30e1cadeb.tar.gz postgresql-7aeab94adf2a7e1ad0d0a32ee4bdc6b30e1cadeb.zip |
This trivial patch removes 2 unused defines from pg_config.h.in:
FASTBUILD and DATEDEBUG weren't referenced by any other code.
Neil Conway
Diffstat (limited to 'src')
-rw-r--r-- | src/include/pg_config.h.in | 17 |
1 files changed, 1 insertions, 16 deletions
diff --git a/src/include/pg_config.h.in b/src/include/pg_config.h.in index b98f7b69f6f..e6668999612 100644 --- a/src/include/pg_config.h.in +++ b/src/include/pg_config.h.in @@ -8,7 +8,7 @@ * or in pg_config.h afterwards. Of course, if you edit pg_config.h, then your * changes will be overwritten the next time you run configure. * - * $Id: pg_config.h.in,v 1.33 2002/11/07 22:08:30 tgl Exp $ + * $Id: pg_config.h.in,v 1.34 2002/11/10 00:38:21 momjian Exp $ */ #ifndef PG_CONFIG_H @@ -186,18 +186,6 @@ /* #define ALLOW_DANGEROUS_LO_FUNCTIONS */ /* - * Use btree bulkload code: - * this code is moderately slow (~10% slower) compared to the regular - * btree (insertion) build code on sorted or well-clustered data. on - * random data, however, the insertion build code is unusable -- the - * difference on a 60MB heap is a factor of 15 because the random - * probes into the btree thrash the buffer pool. - * - * Great thanks to Paul M. Aoki (aoki@CS.Berkeley.EDU) - */ -#define FASTBUILD /* access/nbtree/nbtsort.c */ - -/* * MAXPGPATH: standard size of a pathname buffer in Postgres (hence, * maximum usable pathname length is one less). * @@ -277,9 +265,6 @@ */ /* #define COPY_PARSE_PLAN_TREES */ -/* Enable debugging print statements in the date/time support routines. */ -/* #define DATEDEBUG */ - /* Enable debugging print statements for lock-related operations. */ /* #define LOCK_DEBUG */ |