From: | Tender Wang <tndrwang(at)gmail(dot)com> |
---|---|
To: | Tom Lane <tgl(at)sss(dot)pgh(dot)pa(dot)us> |
Cc: | Alexander Lakhin <exclusion(at)gmail(dot)com>, jian he <jian(dot)universality(at)gmail(dot)com>, PostgreSQL-development <pgsql-hackers(at)postgresql(dot)org> |
Subject: | Re: bug when apply fast default mechanism for adding new column over domain with default value |
Date: | 2025-04-02 02:01:31 |
Message-ID: | CAHewXNmGmNkkCB73uvk9nP0NJ08JOwAYM8tWEmvQL1f-EH3uOA@mail.gmail.com |
Views: | Raw Message | Whole Thread | Download mbox | Resend email |
Thread: | |
Lists: | pgsql-hackers |
Tom Lane <tgl(at)sss(dot)pgh(dot)pa(dot)us> 于2025年4月2日周三 09:05写道:
> Alexander Lakhin <exclusion(at)gmail(dot)com> writes:
> > I've discovered that 95f650674 introduced a defect similar to bug #18297,
> > but this time with DEFAULT. Namely, the following script:
> > CREATE TABLE a (aa text);
> > CREATE TABLE c (cc text) INHERITS (a);
> > CREATE TABLE d (dd text) INHERITS (c, a);
> > ALTER TABLE a ADD COLUMN i int DEFAULT 1;
>
> > fails with:
> > ERROR: XX000: tuple already updated by self
> > LOCATION: simple_heap_update, heapam.c:4421
>
> Hmm, yeah. The failing call is here:
>
> /* Bump the existing child att's inhcount */
> ...
> CatalogTupleUpdate(attrdesc, &tuple->t_self, tuple);
>
> so I think you're right that that code path is now short a
> CommandCounterIncrement() somewhere. I'll look tomorrow if
> nobody beats me to it.
>
Yes, when table a process its children, which are table c and table d.
Table c is first to be done.
At the same time, table d is also child of table c, so after updating own
pg_attribute tuple, table c will
process its child table d. And table d update its pg_attribute catalog
tuple.
After finishing table c, the logic returning to continue to process table
a's children, which this time is table d.
Between table d pg_attribute tuple updated as child of table c and updating
table d pg_attribute tuple again as child of table a,
there is no call CommandCounterIncrement().
So let's add CommandCounterIncrement() after calling StoreAttrMissingVal().
--
Thanks, Tender Wang
Attachment | Content-Type | Size |
---|---|---|
0001-Fix-tuple-already-updated-by-self-issue.patch | text/plain | 2.9 KB |
From | Date | Subject | |
---|---|---|---|
Next Message | Richard Guo | 2025-04-02 02:14:10 | Re: Reduce "Var IS [NOT] NULL" quals during constant folding |
Previous Message | Peifeng Qiu | 2025-04-02 01:36:45 | Extensible user mapping handler for FDW |