From 8e2bc152ebef4a189a41508b6c3a65f5956695ef Mon Sep 17 00:00:00 2001 From: liujinyang <21043272@qq.com> Date: Tue, 13 Jan 2026 13:34:37 +0800 Subject: [PATCH v1] remove the unneeded header file math.h in binaryheap.c math.h was inlcuded in binaryheap.c, it is unnecessary, so remove it. Author: liujinyang <21043272@qq.com> --- src/common/binaryheap.c | 1 - 1 file changed, 1 deletion(-) diff --git a/src/common/binaryheap.c b/src/common/binaryheap.c index d2be882..df620c1 100644 --- a/src/common/binaryheap.c +++ b/src/common/binaryheap.c @@ -17,7 +17,6 @@ #include "postgres.h" #endif -#include #ifdef FRONTEND #include "common/logging.h" -- 1.8.3.1