diff options
author | David Rowley <drowley@postgresql.org> | 2024-07-01 21:19:01 +1200 |
---|---|---|
committer | David Rowley <drowley@postgresql.org> | 2024-07-01 21:19:01 +1200 |
commit | 12227a1d5f8ecad296c4204cc924d33c6a6bcd34 (patch) | |
tree | 5f3e5a267a9b217369a4b07b50fd839d2dbc8abb /doc/src | |
parent | e26d313bad92e71e2b59cc2e81870bf6d750de1f (diff) | |
download | postgresql-12227a1d5f8ecad296c4204cc924d33c6a6bcd34.tar.gz postgresql-12227a1d5f8ecad296c4204cc924d33c6a6bcd34.zip |
Add context type field to pg_backend_memory_contexts
Since we now (as of v17) have 4 MemoryContext types, the type of context
seems like useful information to include in the pg_backend_memory_contexts
view. Here we add that.
Reviewed-by: David Christensen, Michael Paquier
Discussion: https://postgr.es/m/CAApHDvrXX1OR09Zjb5TnB0AwCKze9exZN%3D9Nxxg1ZCVV8W-3BA%40mail.gmail.com
Diffstat (limited to 'doc/src')
-rw-r--r-- | doc/src/sgml/system-views.sgml | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/doc/src/sgml/system-views.sgml b/doc/src/sgml/system-views.sgml index 8c18bea902f..bdc34cf94e8 100644 --- a/doc/src/sgml/system-views.sgml +++ b/doc/src/sgml/system-views.sgml @@ -492,6 +492,15 @@ <row> <entry role="catalog_table_entry"><para role="column_definition"> + <structfield>type</structfield> <type>text</type> + </para> + <para> + Type of the memory context + </para></entry> + </row> + + <row> + <entry role="catalog_table_entry"><para role="column_definition"> <structfield>level</structfield> <type>int4</type> </para> <para> |