nocfbot-0010-Remove-duplicate-include-nodeWindowAgg.txt

text/plain

Filename: nocfbot-0010-Remove-duplicate-include-nodeWindowAgg.txt
Type: text/plain
Part: 9
Message: Re: Row pattern recognition
From 49722e9fd37430733a84c39da688fe1aedb48a10 Mon Sep 17 00:00:00 2001
From: Henson Choi <assam258@gmail.com>
Date: Thu, 7 May 2026 21:37:51 +0900
Subject: [PATCH 10/10] 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 d82ad8d3897..2f87449a0e0 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)