reindexdb: Skip reindexing temporary tables and indexes.
commit77f1546819818aa740fd8e54427ccb33f507f2cf
authorFujii Masao <fujii@postgresql.org>
Mon, 30 Sep 2024 02:13:55 +0000 (30 11:13 +0900)
committerFujii Masao <fujii@postgresql.org>
Mon, 30 Sep 2024 02:15:56 +0000 (30 11:15 +0900)
tree19855dd8424461527672e7d327562e3a32c0ce5c
parentda99df15c25d9c769f24a721f34ed062d0b5d4d2
reindexdb: Skip reindexing temporary tables and indexes.

Reindexing temp tables or indexes of other sessions is not allowed.
However, reindexdb in parallel mode previously listed them as
the objects to process, leading to failures.

This commit ensures reindexdb in parallel mode skips temporary tables
and indexes by adding a condition based on the relpersistence column
in pg_class to the object listing queries, preventing these issues.

Note that this commit does not affect reindexdb when temporary tables
or indexes are explicitly specified using the -t or -j options;
reindexdb in that case still does not skip them and can cause an error.

Back-patch to v13 where parallel mode was introduced in reindexdb.

Author: Fujii Masao
Reviewed-by: Michael Paquier
Discussion: https://postgr.es/m/5f37ee56-14fb-44fe-9150-9eb97e10538b@oss.nttdata.com
src/bin/scripts/reindexdb.c