blank-line-patch.txt

text/plain

Filename: blank-line-patch.txt
Type: text/plain
Part: 0
Message: Re: IGNORE/RESPECT NULLS can be specified for (prokind == 'f').
From 3be0ae0d258a77d9a153601242c7538527c9d91f Mon Sep 17 00:00:00 2001
From: Henson Choi <assam258@gmail.com>
Date: Thu, 25 Jun 2026 22:50:45 +0900
Subject: [PATCH v1] Remove stray blank line in ParseFuncOrColumn()

Commit 419ce13b701 left an extraneous blank line before the closing
brace of the normal-aggregate block in ParseFuncOrColumn().  Remove it.
No functional change.
---
 src/backend/parser/parse_func.c | 1 -
 1 file changed, 1 deletion(-)

diff --git a/src/backend/parser/parse_func.c b/src/backend/parser/parse_func.c
index fb306c05112..9cdbaa542fe 100644
--- a/src/backend/parser/parse_func.c
+++ b/src/backend/parser/parse_func.c
@@ -526,7 +526,6 @@ ParseFuncOrColumn(ParseState *pstate, List *funcname, List *fargs,
 						 errmsg("%s is not an ordered-set aggregate, so it cannot have WITHIN GROUP",
 								NameListToString(funcname)),
 						 parser_errposition(pstate, location)));
-
 		}
 
 		if (ignore_nulls != NO_NULLTREATMENT)
-- 
2.50.1 (Apple Git-155)