Re: Incorrect UPDATE trigger invocation in the UPDATE clause of an UPSERT statement. - Mailing list pgsql-bugs

From Michael Paquier
Subject Re: Incorrect UPDATE trigger invocation in the UPDATE clause of an UPSERT statement.
Date
Msg-id CAB7nPqRioCgcGydOV5h1raa21QvYR3EiJVKY7UVdwHx=-KhcUw@mail.gmail.com
Whole thread Raw
In response to Re: Incorrect UPDATE trigger invocation in the UPDATE clause of an UPSERT statement.  (Dean Rasheed <dean.a.rasheed@gmail.com>)
Responses Re: Incorrect UPDATE trigger invocation in the UPDATE clause of an UPSERT statement.  (Peter Geoghegan <pg@heroku.com>)
List pgsql-bugs
On Thu, Dec 3, 2015 at 5:19 PM, Dean Rasheed <dean.a.rasheed@gmail.com> wrote:
> On 3 December 2015 at 07:30, Michael Paquier <michael.paquier@gmail.com> wrote:
>> On Mon, Nov 30, 2015 at 8:43 PM, Stanislav Grozev wrote:
>>> If we do an UPSERT instead, watch how OLD and NEW are the same (NEW):
>>
>> AFAIK, that's the expected behavior. AFTER UPDATE triggers firing for
>> ON CONFLICT DO UPDATE will see the same NEW and OLD values. Comments
>> from others?
>
> That's not what I would expect. I would expect it to be consistent
> with AFTER triggers firing after a plain UPDATE, and also with BEFORE
> triggers for ON CONFLICT DO UPDATE.

triggers.out is telling that this may be intended to work this way:
WARNING:  after update (old): (5,"updated green trig modified")
WARNING:  after update (new): (5,"updated green trig modified")
Though I agree that it is not instinctive...

Btw, the patch provided fails on an assertion with regression tests:
   2426        /* Determine lock mode to use */
   2427        lockmode = ExecUpdateLockMode(estate, relinfo);
   2428
-> 2429        Assert(HeapTupleIsValid(fdw_trigtuple) ^
ItemPointerIsValid(tupleid));
   2430        if (fdw_trigtuple == NULL)

Peter, Andres, thoughts?
--
Michael

pgsql-bugs by date:

Previous
From: Marko Tiikkaja
Date:
Subject: Re: Possible bug: ALTER TABLE x DROP COLUMN y "column ... does not exist" then it does
Next
From: "Daniel Verite"
Date:
Subject: Re: Possible bug: ALTER TABLE x DROP COLUMN y "column ... does not exist" then it does