diff options
| author | Michael Paquier | 2026-09-12 00:04:12 +0000 |
|---|---|---|
| committer | Michael Paquier | 2026-09-12 00:04:12 +0000 |
| commit | 3af37ef3482b7d207e7eccfe8987bb8f011ee227 (patch) | |
| tree | 8e2bbe89d30d1cc25fd530b33f4b46a70ea7afb6 /doc | |
| parent | 8e4d7e7baa46fde0cc140e475a3b2647e72580af (diff) | |
doc: Fix output column name for pg_stat_get_backend_subxact()
pg_stat_get_backend_subxact()'s second attribute was written as
"subxact_overflow" in the docs, but its name is "subxact_overflowed".
Note that the attribute name is still wrong in the TupleDesc generated
in the function; pg_proc agrees with "overflowed".
Author: Shihao Zhong <zhong950419@gmail.com>
Reviewed-by: Jim Jones <jim.jones@uni-muenster.de>
Reviewed-by: Michael Paquier <michael@paquier.xyz>
Discussion: https://postgr.es/m/CAGRkXqTBZ+zbVuDC8xGEB6Btj61hsui5H5nGqzFBDyOXc=4bjQ@mail.gmail.com
Backpatch-through: 16
Diffstat (limited to 'doc')
| -rw-r--r-- | doc/src/sgml/monitoring.sgml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/doc/src/sgml/monitoring.sgml b/doc/src/sgml/monitoring.sgml index 1f947505af3..dd73c0f0bc9 100644 --- a/doc/src/sgml/monitoring.sgml +++ b/doc/src/sgml/monitoring.sgml @@ -6211,7 +6211,7 @@ FROM pg_stat_get_backend_idset() AS backendid; backend with the specified ID. The fields returned are <parameter>subxact_count</parameter>, which is the number of subtransactions in the backend's subtransaction cache, - and <parameter>subxact_overflow</parameter>, which indicates whether + and <parameter>subxact_overflowed</parameter>, which indicates whether the backend's subtransaction cache is overflowed or not. </para></entry> </row> |
