diff options
| author | Peter Eisentraut | 2025-07-29 16:56:00 +0000 |
|---|---|---|
| committer | Peter Eisentraut | 2025-07-29 16:57:14 +0000 |
| commit | c3019bb778b99f2541779ed23402a8f825a0000b (patch) | |
| tree | b243529cabbbde137e4fa1821cca5fc9ccfcfecd | |
| parent | 902f922218894dd69df1874f9f130dbbafff0499 (diff) | |
Update comment
The code being referred to was moved to a different function in commit
eb8312a22a8, so update the comment accordingly.
| -rw-r--r-- | src/backend/utils/adt/tid.c | 2 |
1 files changed, 1 insertions, 1 deletions
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 && |
