From 51b14f679e31f0471f844cf887c55c8b35607ab9 Mon Sep 17 00:00:00 2001 From: Andres Freund Date: Fri, 13 Mar 2026 10:47:46 -0400 Subject: [PATCH v2 10/17] don't include queryenvironment.h in execnodes.h --- src/include/nodes/execnodes.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/include/nodes/execnodes.h b/src/include/nodes/execnodes.h index e63a8fbec09..fef8a3f843f 100644 --- a/src/include/nodes/execnodes.h +++ b/src/include/nodes/execnodes.h @@ -40,7 +40,6 @@ #include "nodes/plannodes.h" #include "partitioning/partdefs.h" #include "storage/buf.h" -#include "utils/queryenvironment.h" #include "utils/reltrigger.h" #include "utils/snapshot.h" #include "utils/sortsupport.h" @@ -53,6 +52,7 @@ typedef struct ExecRowMark ExecRowMark; typedef struct ExprState ExprState; typedef struct ExprContext ExprContext; typedef struct HTAB HTAB; +typedef struct QueryEnvironment QueryEnvironment; typedef struct ScanKeyData ScanKeyData; typedef struct TIDBitmap TIDBitmap; typedef struct Tuplesortstate Tuplesortstate; -- 2.53.0.1.gb2826b52eb