diff options
author | Tom Lane <tgl@sss.pgh.pa.us> | 2005-03-19 23:27:11 +0000 |
---|---|---|
committer | Tom Lane <tgl@sss.pgh.pa.us> | 2005-03-19 23:27:11 +0000 |
commit | 91728fa26cabac4b34055ab8e23d0751f0b16753 (patch) | |
tree | 59a1caabd632d250173dbe6fcec4031ce05283b4 /src/backend/utils/init/postinit.c | |
parent | d65522aeb6eac89f8491b0852c3543d6c0aeb94a (diff) |
Add temp_buffers GUC variable to allow users to determine the size
of the local buffer arena for temporary table access.
Diffstat (limited to 'src/backend/utils/init/postinit.c')
-rw-r--r-- | src/backend/utils/init/postinit.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/src/backend/utils/init/postinit.c b/src/backend/utils/init/postinit.c index 05f669c2ccd..00b541204b4 100644 --- a/src/backend/utils/init/postinit.c +++ b/src/backend/utils/init/postinit.c @@ -8,7 +8,7 @@ * * * IDENTIFICATION - * $PostgreSQL: pgsql/src/backend/utils/init/postinit.c,v 1.143 2005/03/18 16:16:09 tgl Exp $ + * $PostgreSQL: pgsql/src/backend/utils/init/postinit.c,v 1.144 2005/03/19 23:27:06 tgl Exp $ * * *------------------------------------------------------------------------- @@ -257,7 +257,6 @@ BaseInit(void) /* Do local initialization of storage and buffer managers */ smgrinit(); InitBufferPoolAccess(); - InitLocalBuffer(); } |