From c60246b449178434e0f07a6d88149a5356c25695 Mon Sep 17 00:00:00 2001 From: 0xPoe Date: Sun, 5 Jul 2026 15:00:13 +0200 Subject: [PATCH v1] Remove unnecessary #include "storage/procarray.h" Commit 284925508ae removed the call to GetOldestNonRemovableTransactionId() from acquire_sample_rows(), which was the last use of anything declared in procarray.h in this file, but the include was left behind. --- src/backend/commands/analyze.c | 1 - 1 file changed, 1 deletion(-) diff --git a/src/backend/commands/analyze.c b/src/backend/commands/analyze.c index f66e80b757c..e3e30839923 100644 --- a/src/backend/commands/analyze.c +++ b/src/backend/commands/analyze.c @@ -44,7 +44,6 @@ #include "statistics/extended_stats_internal.h" #include "statistics/statistics.h" #include "storage/bufmgr.h" -#include "storage/procarray.h" #include "utils/attoptcache.h" #include "utils/datum.h" #include "utils/guc.h" -- 2.50.1 (Apple Git-155)