Re: "could not open relation..." - Mailing list pgsql-performance

From Tom Lane
Subject Re: "could not open relation..."
Date
Msg-id 8614.1271186701@sss.pgh.pa.us
Whole thread Raw
In response to Re: "could not open relation..."  (Brian Cox <brian.cox@ca.com>)
List pgsql-performance
Brian Cox <brian.cox@ca.com> writes:
> On 04/10/2010 12:29 AM, Tom Lane [tgl@sss.pgh.pa.us] wrote:
>> but anyway: the main
>> known cause for that is if one of the tables used in the query got
>> dropped (by another session) just after the query started. Could
>> that have happened to you?

> interesting and possible; but why doesn't locking prevent this?

Locking prevents you from getting some random internal failure
that would happen if the table disappeared mid-query.  It cannot
eliminate the problem altogether, because the issue here is that
the dropping transaction got there first; there is no reason not
to allow it to proceed.  So the reading transaction is going to fail.
The most we could change is the spelling of the error message,
but I'm not sure that masking the fact that something odd happened
is a good idea.  (From the reader's viewpoint, it did see a table
by that name in the catalogs, but by the time it acquired lock on
the table, the catalog entry was gone.  Playing dumb and just saying
"table does not exist" could be even more confusing than the current
behavior.)

            regards, tom lane

pgsql-performance by date:

Previous
From: Cédric Villemain
Date:
Subject: Re: stats collector suddenly causing lots of IO
Next
From: Alvaro Herrera
Date:
Subject: Re: stats collector suddenly causing lots of IO