: Zubkovsky, Sergey
Cc: pgsql-bugs@postgresql.org
Subject: Re: [BUGS] ERROR: tuple concurrently updated
"Zubkovsky, Sergey" <[EMAIL PROTECTED]> writes:
> create table t1 ( id int );
> create temp view v1 as select * from t1;
> C1: begin; drop view v1;
> C2: drop table t1;
"Zubkovsky, Sergey" <[EMAIL PROTECTED]> writes:
> create table t1 ( id int );
> create temp view v1 as select * from t1;
> C1: begin; drop view v1;
> C2: drop table t1;
> C1: commit;
This seems a variant of the problem noted by Michael Fuhr some time ago:
http://archives.postgresql.org/pgsql-hacke
Hello.
Testing of the concurrent access to database objects leaded to the following
error:
ERROR: tuple concurrently updated
SQL state: XX000
According to the "PostgreSQL Error Codes" table in the documentation, "XX000"
is the PostgreSQL internal error code.
How to reproduce