From: | PG Bug reporting form <noreply(at)postgresql(dot)org> |
---|---|
To: | pgsql-bugs(at)lists(dot)postgresql(dot)org |
Cc: | luajk(at)qq(dot)com |
Subject: | BUG #18103: bugs of concurrent merge into when use different join plan |
Date: | 2023-09-10 12:57:14 |
Message-ID: | 18103-c4386baab8e355e3@postgresql.org |
Views: | Raw Message | Whole Thread | Download mbox | Resend email |
Thread: | |
Lists: | pgsql-bugs |
The following bug has been logged on the website:
Bug reference: 18103
Logged by: luajk
Email address: luajk(at)qq(dot)com
PostgreSQL version: 16rc1
Operating system: ANY
Description:
Use Case:
drop table t1;
drop table t2;
create table t1(a int not null, b int);
create table t2(a int not null, b int);
insert into t1 values(generate_series(1,3), generate_series(1,3));
insert into t2 values(generate_series(1,3), generate_series(1,3));
execute in two concurrent sessions and do as following:
session1:
begin;
session2:
begin;
set enable_hashjoin = off;
set enable_mergejoin = off;
merge into t1 p using (select distinct a,b from t2) q on p.a = q.a when
matched then update set b = q.b when not matched then insert values(q.a,
q.b);
session1:
set enable_hashjoin = off;
set enable_mergejoin = off;
merge into t1 p using (select distinct a,b from t2) q on p.a = q.a when
matched then update set b = q.b when not matched then insert values(q.a,
q.b);
session2:
commit;
session1:
select count(*) from t1; -- there are 5 rows;
however:
session1:
begin;
session2:
begin;
set enable_nestloop = off;
set enable_mergejoin = off;
merge into t1 p using (select distinct a,b from t2) q on p.a = q.a when
matched then update set b = q.b when not matched then insert values(q.a,
q.b);
session1:
set enable_nestloop = off;
set enable_mergejoin = off;
merge into t1 p using (select distinct a,b from t2) q on p.a = q.a when
matched then update set b = q.b when not matched then insert values(q.a,
q.b);
session2:
commit;
session1:
select count(*) from t1; -- there are 3 rows;
nest loop join is the same as merge join in such scenes.
From | Date | Subject | |
---|---|---|---|
Next Message | Jeff Davis | 2023-09-10 15:45:22 | [16+] subscription can end up in inconsistent state |
Previous Message | Tom Lane | 2023-09-09 22:56:42 | Re: BUG #18097: Immutable expression not allowed in generated at |