Re: [HACKERS] Ye olde "relation doesn't quite exist" problem - Mailing list pgsql-hackers

From Bruce Momjian
Subject Re: [HACKERS] Ye olde "relation doesn't quite exist" problem
Date
Msg-id 199905281841.OAA00257@candle.pha.pa.us
Whole thread Raw
In response to Re: [HACKERS] Ye olde "relation doesn't quite exist" problem  (Tom Lane <tgl@sss.pgh.pa.us>)
Responses Re: [HACKERS] Ye olde "relation doesn't quite exist" problem  (Tom Lane <tgl@sss.pgh.pa.us>)
List pgsql-hackers
> Is there room in the SysCaches for the transaction ID of the last
> transaction to modify each entry?  That would provide an easy and
> inexpensive way of finding the ones to zap when the current xact is
> aborted, I would think: abort would just scan all the caches looking
> for entries with the current xact ID, and invalidate only those entries.
> The cost in the no-error case would just be storing an additional
> field whenever an entry is modified; seems cheap enough.  However,
> if there are a lot of different places in the code that can create/
> modify a cache entry, this could be a fair amount of work (and it'd
> carry the risk of missing some places...).

Yes, I think we could put it in, though it may have to sequential scan
to remove the entries.

> 
> > Seems like this not something for 6.5.
> 
> I think we really ought to do *something*.  I'd settle for the
> brute-force blow-away-all-the-caches answer for now, though.

OK.  I wonder if there are any problems with that.  I do that in heap.c:
           /*            * This is heavy-handed, but appears necessary bjm 1999/02/01            *
SystemCacheRelationFlushed(relid)is not enough either.            */           RelationForgetRelation(relid);
ResetSystemCache();

as part of a temp table creation to remove any non-temp table entry in
the cache.  I could not find another way, and because the temp table
creation doesn't cause problems, this could probably be used in
transaction abort too.


--  Bruce Momjian                        |  http://www.op.net/~candle maillist@candle.pha.pa.us            |  (610)
853-3000+  If your life is a hard drive,     |  830 Blythe Avenue +  Christ can be your backup.        |  Drexel Hill,
Pennsylvania19026
 


pgsql-hackers by date:

Previous
From: Tom Lane
Date:
Subject: Re: [HACKERS] Ye olde "relation doesn't quite exist" problem
Next
From: Hannu Krosing
Date:
Subject: Re: [HACKERS] Performance problem partially identified