Re: Re: Add support for specifying tables in pg_createsubscriber.

2025-12-03 Thread vignesh C
On Thu, 4 Dec 2025 at 07:47, Peter Smith wrote: > > On Wed, Dec 3, 2025 at 4:47 PM tianbing wrote: > > > > Hi, Peter, > > I have reviewed the v21 patch and noticed that there seems to be a memory > > leak. > > > > +static bool > > +check_publication_exists(PGconn *conn, const char *pubname, cons

Re: Re: Add support for specifying tables in pg_createsubscriber.

2025-12-03 Thread Peter Smith
On Wed, Dec 3, 2025 at 4:47 PM tianbing wrote: > > Hi, Peter, > I have reviewed the v21 patch and noticed that there seems to be a memory > leak. > > +static bool > +check_publication_exists(PGconn *conn, const char *pubname, const char > *dbname) > +{ > + PGresult *res; > + bool exists; > + cha