Re: [HACKERS] weird state after aborted transaction in pgsql 6.4

Поиск
Список
Период
Сортировка
От Bruce Momjian
Тема Re: [HACKERS] weird state after aborted transaction in pgsql 6.4
Дата
Msg-id 199812130407.XAA13574@candle.pha.pa.us
обсуждение исходный текст
Ответ на Re: [HACKERS] weird state after aborted transaction in pgsql 6.4  (jwieck@debis.com (Jan Wieck))
Список pgsql-hackers
> >
> > My database is in weird state after some operation. Here is an example:
> >
> > [david@kerberos david]$ psql
> > .....
> > david=> begin;
> > BEGIN
> > david=> create table tbl ( i int );
> > CREATE
> > david=> insert into tbl values(1);
> > INSERT 104137 1
> > EOFid=> [<ctrl-d> here]
> > [david@kerberos david]$ psql
> > ....
> > david=> create table tbl ( a text );
> > ERROR:  cannot create tbl
> > david=> \d
> > Couldn't find any tables, sequences or indices!
> >       ====================== cut here ======================
> > Simple question: why 'ERROR: cannot create tbl' ?
> > Platform: linux i586, glibc, regression tests seems ok (except minor
> > problem with floating point. The some problem have my colleague.
> 
>     The   problem  is,  that  the  CREATE  TABLE  is  inside  the
>     transaction.  So the catalog updates for the  new  table  get
>     rolled  back, but the file is still there. On the next CREATE
>     TABLE the file creation (made with O_EXCL) fails.
> 
>     You can safely remove the file   .../data/base/david/tbl  and
>     you   should   execute   CREATE/DROP  statements  outside  of
>     transactions.
> 

Added to TODO:* CREATE TABLE inside aborted transaction causes stray table file


--  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 по дате отправления:

Предыдущее
От: Bruce Momjian
Дата:
Сообщение: Re: [HACKERS] COMMIT
Следующее
От: Bruce Momjian
Дата:
Сообщение: Re: [HACKERS] Bug report: PL/pgSQL and mixed case table/field names.