Commit 1cfd8786 authored by Bruce Momjian's avatar Bruce Momjian

Clarify documention workding for xip_list().

Simon Riggs
parent 409c144d
<!-- $PostgreSQL: pgsql/doc/src/sgml/func.sgml,v 1.444 2008/09/06 00:01:21 tgl Exp $ --> <!-- $PostgreSQL: pgsql/doc/src/sgml/func.sgml,v 1.445 2008/09/07 01:29:36 momjian Exp $ -->
<chapter id="functions"> <chapter id="functions">
<title>Functions and Operators</title> <title>Functions and Operators</title>
...@@ -12006,11 +12006,14 @@ SELECT pg_type_is_visible('myschema.widget'::regtype); ...@@ -12006,11 +12006,14 @@ SELECT pg_type_is_visible('myschema.widget'::regtype);
<row> <row>
<entry><type>xip_list</type></entry> <entry><type>xip_list</type></entry>
<entry> <entry>
Active txids at the time of the snapshot. All of them are between Active txids at the time of the snapshot. The list
<literal>xmin</> and <literal>xmax</>. A txid that is includes only those active txids between <literal>xmin</>
<literal>xmin &lt;= txid &lt; xmax</literal> and not in this list was and <literal>xmax</>; there might be active txids higher
already completed at the time of the snapshot, and thus either visible than xmax. A txid that is <literal>xmin &lt;= txid &lt;
or dead according to its commit status. xmax</literal> 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.
</entry> </entry>
</row> </row>
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment