|
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 such an error:
create table t1 (
id int ); create temp view
v1 as select * from t1;
C1: begin; drop
view v1; C2: drop table
t1; C1: commit; And finally, transaction of the client C2 is
terminated with this "expected" error. What’s wrong? |