From c89df50fd7e0d1c6700ff6dc0fa8c8788e6ea95a Mon Sep 17 00:00:00 2001 From: Bruce Momjian Date: Sun, 7 Sep 2008 01:29:36 +0000 Subject: [PATCH] Clarify documention workding for xip_list(). Simon Riggs --- doc/src/sgml/func.sgml | 13 ++++++++----- 1 file changed, 8 insertions(+), 5 deletions(-) diff --git a/doc/src/sgml/func.sgml b/doc/src/sgml/func.sgml index 308ccdf8d2..edc1e37346 100644 --- a/doc/src/sgml/func.sgml +++ b/doc/src/sgml/func.sgml @@ -12006,11 +12006,14 @@ SELECT pg_type_is_visible('myschema.widget'::regtype); xip_list - Active txids at the time of the snapshot. All of them are between - xmin and xmax. A txid that is - xmin <= txid < xmax and not in this list was - already completed at the time of the snapshot, and thus either visible - or dead according to its commit status. + Active txids at the time of the snapshot. The list + includes only those active txids between xmin + and xmax; there might be active txids higher + than xmax. A txid that is xmin <= txid < + xmax and not in this list was already completed + at the time of the snapshot, and thus either visible or + dead according to its commit status. The list does not + include txids of subtransactions. -- 2.39.5