diff options
author | Tomas Vondra <tomas.vondra@postgresql.org> | 2025-04-08 11:45:01 +0200 |
---|---|---|
committer | Tomas Vondra <tomas.vondra@postgresql.org> | 2025-04-08 12:36:36 +0200 |
commit | b8a6078ca8f446a6271b26101de75ee48e288a3a (patch) | |
tree | 98fadcd8673cba050c833d1aa76dd5f05398bd30 /doc/src | |
parent | 12eece5fd54c2aa3dbdefb6de7f18566f5c00357 (diff) | |
download | postgresql-b8a6078ca8f446a6271b26101de75ee48e288a3a.tar.gz postgresql-b8a6078ca8f446a6271b26101de75ee48e288a3a.zip |
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 <noriyoshi.shinoda@hpe.com>
Discussion: https://postgr.es/m/DM4PR84MB1734308EB741A6ECFF040C27EEAA2@DM4PR84MB1734.NAMPRD84.PROD.OUTLOOK.COM
Diffstat (limited to 'doc/src')
-rw-r--r-- | doc/src/sgml/system-views.sgml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/doc/src/sgml/system-views.sgml b/doc/src/sgml/system-views.sgml index 0eba37268bf..737e7489b78 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 <row> <entry role="catalog_table_entry"><para role="column_definition"> - <structfield>size</structfield> <type>int4</type> + <structfield>size</structfield> <type>int8</type> </para> <para> Size of the allocation on this particular NUMA memory node in bytes |