From 605bfb7dbe5d952b91b92d8b7b98cef549dab36c Mon Sep 17 00:00:00 2001 From: Richard Guo Date: Fri, 3 Oct 2025 16:34:42 +0900 Subject: [PATCH] Fix incorrect function reference in comment The comment incorrectly references the defunct function BufFileOpenShared(), which was replaced in commit dcac5e7ac. This patch updates the comment to refer to the current function BufFileOpenFileSet(). Author: Zhang Mingli Reviewed-by: wenhui qiu Reviewed-by: Richard Guo Discussion: https://postgr.es/m/1cb48b4c-54ab-40cc-b355-0b3c2af6d3f7@Spark --- src/backend/utils/sort/logtape.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/backend/utils/sort/logtape.c b/src/backend/utils/sort/logtape.c index e529ceb8260..452d89a8c0f 100644 --- a/src/backend/utils/sort/logtape.c +++ b/src/backend/utils/sort/logtape.c @@ -681,7 +681,7 @@ LogicalTapeCreate(LogicalTapeSet *lts) { /* * The only thing that currently prevents creating new tapes in leader is - * the fact that BufFiles opened using BufFileOpenShared() are read-only + * the fact that BufFiles opened using BufFileOpenFileSet() are read-only * by definition, but that could be changed if it seemed worthwhile. For * now, writing to the leader tape will raise a "Bad file descriptor" * error, so tuplesort must avoid writing to the leader tape altogether. -- 2.39.5