Nie sądzę, aby można było używać wielu indeksów częściowych jako celu konfliktu. Powinieneś spróbować osiągnąć pożądane zachowanie za pomocą jednego indeksu. Jedynym sposobem, jaki widzę, jest użycie unikalnego indeksu wyrażeń:
drop table if exists test;
create table test (
p text not null,
q text,
r text,
txt text
);
create unique index test_unique_idx on test (p, coalesce(q, ''), coalesce(r, ''));
Teraz wszystkie trzy testy (wykonane dwukrotnie) naruszają ten sam indeks:
insert into test(p,q,r,txt) values ('p',null,null,'a'); -- violates test_unique_idx
insert into test(p,q,r,txt) values ('p','q',null,'b'); -- violates test_unique_idx
insert into test(p,q,r,txt) values ('p',null, 'r','c'); -- violates test_unique_idx
W poleceniu wstawiania należy przekazać wyrażenia użyte w definicji indeksu:
insert into test as u (p,q,r,txt)
values ('p',null,'r','d')
on conflict (p, coalesce(q, ''), coalesce(r, '')) do update
set txt = excluded.txt;