diff options
author | Tom Lane <tgl@sss.pgh.pa.us> | 2000-06-28 03:33:33 +0000 |
---|---|---|
committer | Tom Lane <tgl@sss.pgh.pa.us> | 2000-06-28 03:33:33 +0000 |
commit | 1aebc3618a0be13451918581ad390ad9a3518702 (patch) | |
tree | e8ab228245c43ff086bd8e9d65baf3d1d9a5f96a /src/backend/access/heap/heapam.c | |
parent | b601c8d8828ee02ffb195dead82b233b9572fe32 (diff) |
First phase of memory management rewrite (see backend/utils/mmgr/README
for details). It doesn't really do that much yet, since there are no
short-term memory contexts in the executor, but the infrastructure is
in place and long-term contexts are handled reasonably. A few long-
standing bugs have been fixed, such as 'VACUUM; anything' in a single
query string crashing. Also, out-of-memory is now considered a
recoverable ERROR, not FATAL.
Eliminate a large amount of crufty, now-dead code in and around
memory management.
Fix problem with holding off SIGTRAP, SIGSEGV, etc in postmaster and
backend startup.
Diffstat (limited to 'src/backend/access/heap/heapam.c')
-rw-r--r-- | src/backend/access/heap/heapam.c | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/src/backend/access/heap/heapam.c b/src/backend/access/heap/heapam.c index aacef2a66a9..7ca83587a4d 100644 --- a/src/backend/access/heap/heapam.c +++ b/src/backend/access/heap/heapam.c @@ -8,7 +8,7 @@ * * * IDENTIFICATION - * $Header: /cvsroot/pgsql/src/backend/access/heap/heapam.c,v 1.71 2000/06/15 04:09:34 momjian Exp $ + * $Header: /cvsroot/pgsql/src/backend/access/heap/heapam.c,v 1.72 2000/06/28 03:31:04 tgl Exp $ * * * INTERFACE ROUTINES @@ -1230,10 +1230,7 @@ heap_insert(Relation relation, HeapTuple tup) * ---------------- */ if (!OidIsValid(tup->t_data->t_oid)) - { tup->t_data->t_oid = newoid(); - LastOidProcessed = tup->t_data->t_oid; - } else CheckMaxObjectId(tup->t_data->t_oid); |