| From: | Alexander Lakhin <exclusion(at)gmail(dot)com> |
|---|---|
| To: | Noah Misch <noah(at)leadboat(dot)com>, Robert Haas <robertmhaas(at)gmail(dot)com> |
| Cc: | pgsql-hackers(at)postgresql(dot)org, Tom Lane <tgl(at)sss(dot)pgh(dot)pa(dot)us>, Smolkin Grigory <smallkeen(at)gmail(dot)com>, Michael Paquier <michael(at)paquier(dot)xyz> |
| Subject: | Re: race condition in pg_class |
| Date: | 2024-07-04 05:00:00 |
| Message-ID: | e4b40a88-c134-6926-3196-bc4501cb87a2@gmail.com |
| Views: | Whole Thread | Raw Message | Download mbox | Resend email |
| Thread: | |
| Lists: | pgsql-hackers |
Hello Noah,
28.06.2024 08:13, Noah Misch wrote:
> Pushed. ...
Please look also at another anomaly, I've discovered.
An Assert added with d5f788b41 may be falsified with:
CREATE TABLE t(a int PRIMARY KEY);
INSERT INTO t VALUES (1);
CREATE VIEW v AS SELECT * FROM t;
MERGE INTO v USING (VALUES (1)) AS va(a) ON v.a = va.a
WHEN MATCHED THEN DO NOTHING
WHEN NOT MATCHED THEN DO NOTHING;
TRAP: failed Assert("resultRelInfo->ri_TrigDesc"), File: "nodeModifyTable.c", Line: 2891, PID: 1590670
Best regards,
Alexander
| From | Date | Subject | |
|---|---|---|---|
| Next Message | Tatsuo Ishii | 2024-07-04 05:07:47 | Re: Fix a comment on PQcancelErrorMessage |
| Previous Message | Tom Lane | 2024-07-04 04:49:37 | Re: Unknown annotation '-cim' in source code |