From 3af37ef3482b7d207e7eccfe8987bb8f011ee227 Mon Sep 17 00:00:00 2001 From: Michael Paquier Date: Sat, 12 Sep 2026 09:04:12 +0900 Subject: 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 Reviewed-by: Jim Jones Reviewed-by: Michael Paquier Discussion: https://postgr.es/m/CAGRkXqTBZ+zbVuDC8xGEB6Btj61hsui5H5nGqzFBDyOXc=4bjQ@mail.gmail.com Backpatch-through: 16 --- doc/src/sgml/monitoring.sgml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'doc') 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 subxact_count, which is the number of subtransactions in the backend's subtransaction cache, - and subxact_overflow, which indicates whether + and subxact_overflowed, which indicates whether the backend's subtransaction cache is overflowed or not. -- cgit v1.2.3