From: Peter Eisentraut Date: Tue, 29 Jul 2025 16:56:00 +0000 (+0200) Subject: Update comment X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=c3019bb778b99f2541779ed23402a8f825a0000b;p=thirdparty%2Fpostgresql.git Update comment The code being referred to was moved to a different function in commit eb8312a22a8, so update the comment accordingly. --- diff --git a/src/backend/utils/adt/tid.c b/src/backend/utils/adt/tid.c index 1b0df111717..39dab3e42df 100644 --- a/src/backend/utils/adt/tid.c +++ b/src/backend/utils/adt/tid.c @@ -84,7 +84,7 @@ tidin(PG_FUNCTION_ARGS) /* * Cope with possibility that unsigned long is wider than BlockNumber, in * which case strtoul will not raise an error for some values that are out - * of the range of BlockNumber. (See similar code in oidin().) + * of the range of BlockNumber. (See similar code in uint32in_subr().) */ #if SIZEOF_LONG > 4 if (cvt != (unsigned long) blockNumber &&