Re: pgsql: reindexdb: Add the index-level REINDEX with multiple jobs

2024-03-24 Thread David Rowley
On Mon, 25 Mar 2024 at 13:07, Alexander Korotkov wrote: > reindexdb: Add the index-level REINDEX with multiple jobs This seems to cause a new compiler warning: reindexdb.c: In function ‘reindex_one_database’: reindexdb.c:437:45: warning: ‘indices_tables_cell’ may be used uninitialized

pgsql: reindexdb: Add the index-level REINDEX with multiple jobs

2024-03-24 Thread Alexander Korotkov
reindexdb: Add the index-level REINDEX with multiple jobs Straight-forward index-level REINDEX is not supported with multiple jobs as we cannot control the concurrent processing of multiple indexes depending on the same relation. Instead, we dedicate the whole table to certain reindex job.