Re: Reading all tuples in Index Access Method

2024-08-28 Thread Sushrut Shivaswamy
Thanks Matthias, table_index_build_scan sounds like what I"m looking for. On Wed, Aug 28, 2024 at 9:29 PM Matthias van de Meent < boekewurm+postg...@gmail.com> wrote: > On Wed, 28 Aug 2024 at 16:21, Sushrut Shivaswamy > wrote: > > > > Hi, > > > > I'm trying to create an Index Access Method Rotin

Re: Reading all tuples in Index Access Method

2024-08-28 Thread Matthias van de Meent
On Wed, 28 Aug 2024 at 16:21, Sushrut Shivaswamy wrote: > > Hi, > > I'm trying to create an Index Access Method Roting. > Building the index requires iterating over all rows and calculating, > which is then used during index construction. > > The methods in the IndexAmRoutine seem to deal with ins

Reading all tuples in Index Access Method

2024-08-28 Thread Sushrut Shivaswamy
Hi, I'm trying to create an Index Access Method Roting. Building the index requires iterating over all rows and calculating, which is then used during index construction. The methods in the IndexAmRoutine seem to deal with insertion / index build one row at a time. Is there any workaround you can