Re: 7.2.3 vacuum bug

Поиск
Список
Период
Сортировка
От Tom Lane
Тема Re: 7.2.3 vacuum bug
Дата
Msg-id 3879.1036039205@sss.pgh.pa.us
обсуждение исходный текст
Ответ на Re: 7.2.3 vacuum bug  (Neil Conway <neilc@samurai.com>)
Ответы Re: 7.2.3 vacuum bug  (Neil Conway <neilc@samurai.com>)
Список pgsql-hackers
Neil Conway <neilc@samurai.com> writes:
> client 1:

> CREATE TABLE a (b int);
> BEGIN;
> DROP TABLE a;
> -- wait

> client 2:

> SELECT * FROM a;

> client 1:

> COMMIT;

> Now, client 2 will receive "RelationClearRelation: relation 25172
> deleted while still in use", rather than "Relation "a" does not
> exist", as you might expect.

But relation "a" *does* exist at the start of client 2's operation.
While I'm not here to defend the exact phrasing of this error message,
it does seem to me that it's appropriate to give a different error
message than what appears when the table wasn't found at all.

An example of why the two cases shouldn't be folded together: suppose
that client 2's schema search path is "myschema, public", and that
client 1 creates/drops myschema.a while there is also a public.a.
client 2 will locate myschema.a as the meaning of "a", and one way or
another it is going to error out when myschema.a gets dropped from
underneath it --- it will not (and shouldn't IMHO) go back and repeat
the schema search to find public.a.  But a user who gets a "Relation "a"
does not exist" error message in such a scenario would be justifiably
confused.
        regards, tom lane


В списке pgsql-hackers по дате отправления:

Предыдущее
От: Tom Lane
Дата:
Сообщение: Re: PG functions in Java: maybe use gcj?
Следующее
От: Bruce Momjian
Дата:
Сообщение: Re: move 0 behaviour