From: Bruce Momjian Date: Sun, 7 Sep 2008 01:29:36 +0000 (+0000) Subject: Clarify documention workding for xip_list(). X-Git-Tag: REL8_4_BETA1~1011 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=1cfd878643195788afb66cbdb80c093824470dd5;p=thirdparty%2Fpostgresql.git Clarify documention workding for xip_list(). Simon Riggs --- diff --git a/doc/src/sgml/func.sgml b/doc/src/sgml/func.sgml index 7d8608d01e5..c03863af99a 100644 --- a/doc/src/sgml/func.sgml +++ b/doc/src/sgml/func.sgml @@ -1,4 +1,4 @@ - + Functions and Operators @@ -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.