回复: BUG #18502: Upsert on view returns 42P10 error when condition is an expression

From: 王 海 <michael(dot)wanghai(dot)a(at)outlook(dot)com>
To: Tom Lane <tgl(at)sss(dot)pgh(dot)pa(dot)us>
Cc: Peter Geoghegan <pg(at)bowt(dot)ie>, "pgsql-bugs(at)lists(dot)postgresql(dot)org" <pgsql-bugs(at)lists(dot)postgresql(dot)org>
Subject: 回复: BUG #18502: Upsert on view returns 42P10 error when condition is an expression
Date: 2024-06-12 02:11:01
Message-ID: TYCP286MB28619F2053FA2AFB7BDC6ED8EAC02@TYCP286MB2861.JPNP286.PROD.OUTLOOK.COM
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-bugs

Thanks for the analysis. May I ask how long will it cost normally for such bug fix being released since I'm new to the community? And will it be back port to PG 12?

Hai Wang
________________________________
发件人: Tom Lane <tgl(at)sss(dot)pgh(dot)pa(dot)us>
发送时间: 2024年6月12日 4:54
收件人: michael(dot)wanghai(dot)a(at)outlook(dot)com <michael(dot)wanghai(dot)a(at)outlook(dot)com>
抄送: Peter Geoghegan <pg(at)bowt(dot)ie>; pgsql-bugs(at)lists(dot)postgresql(dot)org <pgsql-bugs(at)lists(dot)postgresql(dot)org>
主题: Re: BUG #18502: Upsert on view returns 42P10 error when condition is an expression

PG Bug reporting form <noreply(at)postgresql(dot)org> writes:
> I have a table, index and view like following:
> ```
> CREATE TABLE my_table
> (
> id uuid primary key,
> data jsonb not null
> );
> CREATE UNIQUE INDEX ON my_table ((data ->> 'key'));
> CREATE VIEW my_view AS SELECT * FROM my_table;
> ```
> The upsert on view returns 42P10 error when I execute the following SQL
> ```
> INSERT INTO my_view (id, data)
> VALUES ('990cc75c-2e60-4c0d-8bec-9ac976dc03bc'::uuid,
> '{
> "key": "value"
> }'::jsonb)
> ON CONFLICT ((data ->> 'key'))
> DO NOTHING;
> ```

For the archives' sake: the error being complained of is

ERROR: there is no unique or exclusion constraint matching the ON CONFLICT specification

Thanks for the report. The fault lies with infer_arbiter_indexes(),
which assumes that it can match the output of
RelationGetIndexExpressions or RelationGetIndexPredicate
directly to the query without adjusting varnos. That works
most of the time, because the INSERT target typically has
varno 1, matching the way these trees are stored in the catalogs.
But not so much when we've flattened an updatable view;
so the match fails even when it should succeed.

The attached seems to be enough to fix it.

regards, tom lane

In response to

Responses

Browse pgsql-bugs by date

  From Date Subject
Next Message David G. Johnston 2024-06-12 02:18:27 Re: BUG #18502: Upsert on view returns 42P10 error when condition is an expression
Previous Message Thomas Munro 2024-06-12 00:59:08 Re: BUG #18503: Reproducible 'Segmentation fault' in 16.3 on ARM64