From: Tomas Vondra Date: Tue, 8 Apr 2025 09:45:01 +0000 (+0200) Subject: doc: Correct pg_shmem_allocations_numa.size data type X-Git-Url: http://git.postgresql.org/gitweb/static/gitweb.js?a=commitdiff_plain;h=b8a6078ca8f446a6271b26101de75ee48e288a3a;p=users%2Frhaas%2Fpostgres.git doc: Correct pg_shmem_allocations_numa.size data type The code in pg_get_shmem_allocations_numa() returned 'size' as int64, but the docs said int32. Report and fix by Noriyoshi Shinoda. Reported-by: Noriyoshi Shinoda Discussion: https://postgr.es/m/DM4PR84MB1734308EB741A6ECFF040C27EEAA2@DM4PR84MB1734.NAMPRD84.PROD.OUTLOOK.COM --- diff --git a/doc/src/sgml/system-views.sgml b/doc/src/sgml/system-views.sgml index 0eba37268b..737e7489b7 100644 --- a/doc/src/sgml/system-views.sgml +++ b/doc/src/sgml/system-views.sgml @@ -4128,7 +4128,7 @@ SELECT * FROM pg_locks pl LEFT JOIN pg_prepared_xacts ppx - size int4 + size int8 Size of the allocation on this particular NUMA memory node in bytes