summaryrefslogtreecommitdiff
path: root/src/backend/utils/mmgr/aset.c
diff options
context:
space:
mode:
authorJan Wieck <JanWieck@Yahoo.com>1999-02-07 13:37:56 +0000
committerJan Wieck <JanWieck@Yahoo.com>1999-02-07 13:37:56 +0000
commita5f3abacb5b8b9e8abf7c1510063dd964a7194da (patch)
tree4b0f3f6321b53a1b9561ec61c96c5fb4eace36bc /src/backend/utils/mmgr/aset.c
parent65d320e7e420ea41f86764bda351f1931274f1e0 (diff)
downloadpostgresql-a5f3abacb5b8b9e8abf7c1510063dd964a7194da.tar.gz
Fixed problem with multiple portals shown up in portals_p2 regression
test after new AllocSet code. Activated optimal AllocSet blocksize and chunk limit. Jan
Diffstat (limited to 'src/backend/utils/mmgr/aset.c')
-rw-r--r--src/backend/utils/mmgr/aset.c11
1 files changed, 1 insertions, 10 deletions
diff --git a/src/backend/utils/mmgr/aset.c b/src/backend/utils/mmgr/aset.c
index 15b5094881..739bd99897 100644
--- a/src/backend/utils/mmgr/aset.c
+++ b/src/backend/utils/mmgr/aset.c
@@ -7,7 +7,7 @@
*
*
* IDENTIFICATION
- * $Header: /cvsroot/pgsql/src/backend/utils/mmgr/aset.c,v 1.12 1999/02/06 16:50:25 wieck Exp $
+ * $Header: /cvsroot/pgsql/src/backend/utils/mmgr/aset.c,v 1.13 1999/02/07 13:37:56 wieck Exp $
*
* NOTE:
* This is a new (Feb. 05, 1999) implementation of the allocation set
@@ -38,17 +38,8 @@
#undef realloc
-/*
#define ALLOC_BLOCK_SIZE 8192
#define ALLOC_CHUNK_LIMIT 512
- *
- * The above settings for block size and chunk limit gain better
- * performance. But the ones below force a bug that I didn't found
- * up to now letting the portals_p2 regression test fail.
- *
- */
-#define ALLOC_BLOCK_SIZE 16384
-#define ALLOC_CHUNK_LIMIT 256
#define ALLOC_BLOCKHDRSZ MAXALIGN(sizeof(AllocBlockData))
#define ALLOC_CHUNKHDRSZ MAXALIGN(sizeof(AllocChunkData))