Here's a one-liner patch for disabling update of pg_class relpages/reltuples/relallviible during a binary upgrade.
This was causting pg_upgrade tests to fail in the existing stats import work.
From 322db8c9e8796ce673f7d7b63bd64e4c9403a144 Mon Sep 17 00:00:00 2001 From: Corey Huinker <corey.huin...@gmail.com> Date: Mon, 1 Apr 2024 18:25:18 -0400 Subject: [PATCH v1] Disable updating pg_class for CREATE INDEX during binary upgrade. There is no point in setting these values because the table will always be empty. --- src/backend/catalog/index.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/backend/catalog/index.c b/src/backend/catalog/index.c index b6a7c60e23..f83b35add5 100644 --- a/src/backend/catalog/index.c +++ b/src/backend/catalog/index.c @@ -2874,7 +2874,7 @@ index_update_stats(Relation rel, dirty = true; } - if (reltuples >= 0) + if ((reltuples >= 0) && (!IsBinaryUpgrade)) { BlockNumber relpages = RelationGetNumberOfBlocks(rel); BlockNumber relallvisible; -- 2.44.0