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/storage/large_object | |
| parent | b601c8d8828ee02ffb195dead82b233b9572fe32 (diff) | |
| download | postgresql-1aebc3618a0be13451918581ad390ad9a3518702.tar.gz | |
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/storage/large_object')
| -rw-r--r-- | src/backend/storage/large_object/inv_api.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/backend/storage/large_object/inv_api.c b/src/backend/storage/large_object/inv_api.c index 474f2616aa..5ca3b7e826 100644 --- a/src/backend/storage/large_object/inv_api.c +++ b/src/backend/storage/large_object/inv_api.c @@ -9,7 +9,7 @@ * * * IDENTIFICATION - * $Header: /cvsroot/pgsql/src/backend/storage/large_object/inv_api.c,v 1.71 2000/06/17 23:41:39 tgl Exp $ + * $Header: /cvsroot/pgsql/src/backend/storage/large_object/inv_api.c,v 1.72 2000/06/28 03:32:04 tgl Exp $ * *------------------------------------------------------------------------- */ @@ -1090,7 +1090,7 @@ inv_newtuple(LargeObjectDesc *obj_desc, ntup->t_len = tupsize; ItemPointerSet(&ntup->t_self, BufferGetBlockNumber(buffer), off); - LastOidProcessed = ntup->t_data->t_oid = newoid(); + ntup->t_data->t_oid = newoid(); TransactionIdStore(GetCurrentTransactionId(), &(ntup->t_data->t_xmin)); ntup->t_data->t_cmin = GetCurrentCommandId(); StoreInvalidTransactionId(&(ntup->t_data->t_xmax)); |
