Re: pgsql: Add support for prepared transactions to built-in logical replic

2021-08-02 Thread Amit Kapila
On Sat, Jul 31, 2021 at 10:11 AM Amit Kapila wrote: > > On Fri, Jul 30, 2021 at 6:17 PM Michael Paquier wrote: > > > > Hi Amit, > > > > On Wed, Jul 14, 2021 at 02:41:43AM +, Amit Kapila wrote: > > > Add support for prepared transactions to built-in logical replication. > > > > 021_twophase.pl

Re: pgsql: Add support for prepared transactions to built-in logical replic

2021-07-30 Thread Amit Kapila
On Fri, Jul 30, 2021 at 6:17 PM Michael Paquier wrote: > > Hi Amit, > > On Wed, Jul 14, 2021 at 02:41:43AM +, Amit Kapila wrote: > > Add support for prepared transactions to built-in logical replication. > > 021_twophase.pl, that has been introdeuced in this commit, is proving > to be a bit un

Re: pgsql: Add support for prepared transactions to built-in logical replic

2021-07-30 Thread Michael Paquier
Hi Amit, On Wed, Jul 14, 2021 at 02:41:43AM +, Amit Kapila wrote: > Add support for prepared transactions to built-in logical replication. 021_twophase.pl, that has been introdeuced in this commit, is proving to be a bit unstable: https://buildfarm.postgresql.org/cgi-bin/show_log.pl?nm=idiaca

pgsql: Add support for prepared transactions to built-in logical replic

2021-07-14 Thread Amit Kapila
Add support for prepared transactions to built-in logical replication. To add support for streaming transactions at prepare time into the built-in logical replication, we need to do the following things: * Modify the output plugin (pgoutput) to implement the new two-phase API callbacks, by levera