1
0
mirror of https://github.com/postgres/postgres.git synced 2025-07-31 22:04:40 +03:00

Update comment

The code being referred to was moved to a different function in commit
eb8312a22a, so update the comment accordingly.
This commit is contained in:
Peter Eisentraut
2025-07-29 18:56:00 +02:00
parent 902f922218
commit c3019bb778

View 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 &&