Re: pgsql: Allow using the updated tuple while moving it to a different par

2018-07-12 Thread Tom Lane
Amit Kapila writes: > On Thu, Jul 12, 2018 at 1:29 PM, Michael Paquier wrote: >> Looks unrelated, but flaviventris (a snake?) has just complained: >> https://buildfarm.postgresql.org/cgi-bin/show_log.pl?nm=flaviventris&dt=2018-07-12%2007%3A36%3A01 > Yeah, I am confused as to how this commit can

Re: pgsql: Allow using the updated tuple while moving it to a different par

2018-07-12 Thread Amit Kapila
On Thu, Jul 12, 2018 at 1:29 PM, Michael Paquier wrote: > On Thu, Jul 12, 2018 at 07:33:54AM +, Amit Kapila wrote: >> Allow using the updated tuple while moving it to a different partition. >> >> An update that causes the tuple to be moved to a different partition was >> missing out on re-cons

Re: pgsql: Allow using the updated tuple while moving it to a different par

2018-07-12 Thread Michael Paquier
On Thu, Jul 12, 2018 at 07:33:54AM +, Amit Kapila wrote: > Allow using the updated tuple while moving it to a different partition. > > An update that causes the tuple to be moved to a different partition was > missing out on re-constructing the to-be-updated tuple, based on the latest > tuple

pgsql: Allow using the updated tuple while moving it to a different par

2018-07-12 Thread Amit Kapila
Allow using the updated tuple while moving it to a different partition. An update that causes the tuple to be moved to a different partition was missing out on re-constructing the to-be-updated tuple, based on the latest tuple in the update chain. Instead, it's simply deleting the latest tuple an

pgsql: Allow using the updated tuple while moving it to a different par

2018-07-12 Thread Amit Kapila
Allow using the updated tuple while moving it to a different partition. An update that causes the tuple to be moved to a different partition was missing out on re-constructing the to-be-updated tuple, based on the latest tuple in the update chain. Instead, it's simply deleting the latest tuple an