Re: [INTERFACES] Wierd error when creating a table...

Поиск
Список
Период
Сортировка
От Tom Lane
Тема Re: [INTERFACES] Wierd error when creating a table...
Дата
Msg-id 23670.927841072@sss.pgh.pa.us
обсуждение исходный текст
Ответ на Re: [INTERFACES] Wierd error when creating a table...  (Tom Lane <tgl@sss.pgh.pa.us>)
Список pgsql-interfaces
I wrote:
> That's a bug: the physical file for the relation has already been
> created by the time the failure in creating the index occurs, and
> although all the updates to system tables get backed out, the empty
> file is not removed during the transaction abort.

After further investigation, the above is wrong, or at least obsolete:
the physical file for the table that couldn't be created *is* removed
when the transaction is cleaned up.  (At least it is in current 6.5
code; didn't try older versions.)  There's still a bug though ---
apparently the system still has an entry for the failed table in its
"relation cache", and that prevents a subsequent CREATE TABLE for the
same table name from succeeding.

A workaround is to exit your psql session and start a new one; the
new backend won't have the erroneous cache entry.  This needs to be
fixed though.
        regards, tom lane


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

Предыдущее
От: "Mark Grimsey"
Дата:
Сообщение: Oracle and Postgresql
Следующее
От: Peter Mount
Дата:
Сообщение: RE: [INTERFACES] Re: [GENERAL] JDBC and insert - stack overflow