From fe4b0403012b6521c75ebf3558ddc77cad1d85db Mon Sep 17 00:00:00 2001 From: Henson Choi Date: Thu, 7 May 2026 21:37:51 +0900 Subject: [PATCH 10/26] Remove duplicate #include in nodeWindowAgg.c #include "common/int.h" was included twice; the first occurrence was also misplaced between two catalog/* headers, breaking the alphabetical grouping of system header includes. Drop the misplaced first occurrence; the second sits in the correct alphabetical position between catalog/ and executor/ headers. --- src/backend/executor/nodeWindowAgg.c | 1 - 1 file changed, 1 deletion(-) diff --git a/src/backend/executor/nodeWindowAgg.c b/src/backend/executor/nodeWindowAgg.c index 188445d779c..99858d22dad 100644 --- a/src/backend/executor/nodeWindowAgg.c +++ b/src/backend/executor/nodeWindowAgg.c @@ -36,7 +36,6 @@ #include "access/htup_details.h" #include "catalog/objectaccess.h" #include "catalog/pg_aggregate.h" -#include "common/int.h" #include "catalog/pg_proc.h" #include "common/int.h" #include "executor/executor.h" -- 2.50.1 (Apple Git-155)