pgsql: Add pg_shmem_allocations view. - Mailing list pgsql-committers

From Robert Haas
Subject pgsql: Add pg_shmem_allocations view.
Date
Msg-id E1ipaRG-0001s8-5w@gemulon.postgresql.org
Whole thread Raw
Responses Re: pgsql: Add pg_shmem_allocations view.
List pgsql-committers
Add pg_shmem_allocations view.

This tells you about allocations that have been made from the main
shared memory segment. The original patch also tried to show information
about dynamic shared memory allocation as well, but I decided to
leave that problem for another time.

Andres Freund and Robert Haas, reviewed by Michael Paquier, Marti
Raudsepp, Tom Lane, Álvaro Herrera, and Kyotaro Horiguchi.

Discussion: http://postgr.es/m/20140504114417.GM12715@awork2.anarazel.de

Branch
------
master

Details
-------
https://git.postgresql.org/pg/commitdiff/ed10f32e37e9a16814c25e400d7826745ae3c797

Modified Files
--------------
doc/src/sgml/catalogs.sgml           |  85 ++++++++++++++++++++++++++++
doc/src/sgml/xfunc.sgml              |   2 +-
src/backend/catalog/system_views.sql |   6 ++
src/backend/storage/ipc/shmem.c      | 106 ++++++++++++++++++++++++++++++++++-
src/include/catalog/pg_proc.dat      |   9 +++
src/include/storage/shmem.h          |   3 +-
src/test/regress/expected/rules.out  |   5 ++
7 files changed, 212 insertions(+), 4 deletions(-)


pgsql-committers by date:

Previous
From: Peter Eisentraut
Date:
Subject: pgsql: doc: Add link to upgrading chapter to release notes
Next
From: Tom Lane
Date:
Subject: pgsql: Reconsider the representation of join alias Vars.