From 1a8b5b11e48a8fb086228542d1d4b379f23bdc1e Mon Sep 17 00:00:00 2001 From: Álvaro Herrera Date: Sun, 5 Oct 2025 18:00:38 +0200 Subject: Don't include access/htup_details.h in executor/tuptable.h This is not at all needed; I suspect it was a simple mistake in commit 5408e233f066. It causes htup_details.h to bleed into a huge number of places via execnodes.h. Remove it and fix fallout. Discussion: https://postgr.es/m/202510021240.ptc2zl5cvwen@alvherre.pgsql --- src/backend/executor/nodeGatherMerge.c | 1 + 1 file changed, 1 insertion(+) (limited to 'src/backend/executor/nodeGatherMerge.c') diff --git a/src/backend/executor/nodeGatherMerge.c b/src/backend/executor/nodeGatherMerge.c index 15f84597067..93f3dbc6cf4 100644 --- a/src/backend/executor/nodeGatherMerge.c +++ b/src/backend/executor/nodeGatherMerge.c @@ -14,6 +14,7 @@ #include "postgres.h" +#include "access/htup_details.h" #include "executor/executor.h" #include "executor/execParallel.h" #include "executor/nodeGatherMerge.h" -- cgit v1.2.3