]> git.ipfire.org Git - thirdparty/postgresql.git/commitdiff
Update comment
authorPeter Eisentraut <peter@eisentraut.org>
Tue, 29 Jul 2025 16:56:00 +0000 (18:56 +0200)
committerPeter Eisentraut <peter@eisentraut.org>
Tue, 29 Jul 2025 16:57:14 +0000 (18:57 +0200)
The code being referred to was moved to a different function in commit
eb8312a22a8, so update the comment accordingly.

src/backend/utils/adt/tid.c

index 1b0df1117171ac2f52c6e62464574bdc4425daf7..39dab3e42df588a1138f3f7f2032d500cd59fa2c 100644 (file)
@@ -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 &&