Re: Invalid pointer access in logical decoding after error

2025-07-03 Thread vignesh C
On Wed, 2 Jul 2025 at 13:21, Zhijie Hou (Fujitsu) wrote: > > On Wed, Jul 2, 2025 at 2:42 PM vignesh C wrote: > > > > > Hi, > > > > I encountered an invalid pointer access issue. Below are the steps to > > reproduce the issue: > ... > > The error occurs because entry->columns is allocated in the en

RE: Invalid pointer access in logical decoding after error

2025-07-02 Thread Zhijie Hou (Fujitsu)
On Wed, Jul 2, 2025 at 2:42 PM vignesh C wrote: > > Hi, > > I encountered an invalid pointer access issue. Below are the steps to > reproduce the issue: ... > The error occurs because entry->columns is allocated in the entry > private context (entry->entry_cxt) by pub_collist_to_bitmapset(). T

Invalid pointer access in logical decoding after error

2025-07-01 Thread vignesh C
Hi, I encountered an invalid pointer access issue. Below are the steps to reproduce the issue: -- Create table CREATE TABLE t1(c1 int, c2 int); -- Create publications with each publication selecting a different column CREATE PUBLICATION pub1 for TABLE t1(c1); CREATE PUBLICATION pub2 for TABLE t1