Re: Some efforts to get rid of "long" in our codebase
Peter Eisentraut <peter@eisentraut.org>
From: Peter Eisentraut <peter@eisentraut.org>
To: Heikki Linnakangas <hlinnaka@iki.fi>, David Rowley
<dgrowleyml@gmail.com>,
PostgreSQL Developers <pgsql-hackers@lists.postgresql.org>
Date: 2025-11-06T18:26:38Z
Lists: pgsql-hackers
Commits
Same data as JSON:
GET /api/v1/messages/:b64id/commits
the thread's linked commits as JSON, with link sources.
API reference →
-
Adjust MemSet macro to use size_t rather than long
- 586d63214e36 19 (unreleased) landed
-
Get rid of long datatype in CATCACHE_STATS enabled builds
- 9c047da51f27 19 (unreleased) landed
On 06.11.25 13:17, Heikki Linnakangas wrote: >> @@ -476,7 +476,7 @@ CatCachePrintStats(int code, Datum arg) >> >> if (cache->cc_ntup == 0 && cache->cc_searches == 0) >> continue; /* don't print unused caches */ >> - elog(DEBUG2, "catcache %s/%u: %d tup, %ld srch, %ld+%ld=%ld >> hits, %ld+%ld=%ld loads, %ld invals, %d lists, %ld lsrch, %ld lhits", >> + elog(DEBUG2, "catcache %s/%u: %d tup, %" PRIu64 " srch, %" >> PRIu64 "+%" PRIu64 "=%" PRIu64 " hits, %" PRIu64 "+%" PRIu64 "=%" >> PRIu64 " loads, %" PRIu64 " invals, %d lists, %" PRIu64 " lsrch, %" >> PRIu64 " lhits", >> cache->cc_relname, >> cache->cc_indexoid, >> cache->cc_ntup, > > Unfortunately PRIu64 makes these much longer and less readable. I don't > think there's much we can do about that though. Perhaps split the format > string to multiple lines? You could also use unsigned long long int for these, to make the format strings more readable.