Location via proxy:   [ UP ]  
[Report a bug]   [Manage cookies]                
Skip to content

Commit bb35e49

Browse files
committed
Remove mention of INV_ARCHIVE.
1 parent ea41e77 commit bb35e49

File tree

3 files changed

+6
-11
lines changed

3 files changed

+6
-11
lines changed

doc/src/sgml/libpgtcl.sgml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1134,7 +1134,7 @@ The oid of the large object created.
11341134
<TITLE>Usage
11351135
</TITLE>
11361136
<PARA>
1137-
mode can be any OR'ing together of INV_READ, INV_WRITE, and INV_ARCHIVE.
1137+
mode can be any OR'ing together of INV_READ and INV_WRITE.
11381138
The OR delimiter character is "|".
11391139
<ProgramListing>
11401140
[pg_lo_creat $conn "INV_READ|INV_WRITE"]

doc/src/sgml/lobj.sgml

+3-7
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
<!--
2-
$Header: /cvsroot/pgsql/doc/src/sgml/lobj.sgml,v 1.17 2001/09/10 03:02:06 ishii Exp $
2+
$Header: /cvsroot/pgsql/doc/src/sgml/lobj.sgml,v 1.18 2001/09/10 04:15:41 momjian Exp $
33
-->
44

55
<chapter id="largeObjects">
@@ -117,17 +117,13 @@ Oid lo_creat(PGconn *<replaceable class="parameter">conn</replaceable>, int <rep
117117
<filename>$<envar>PGROOT</envar>/src/backend/libpq/libpq-fs.h</filename>
118118
The access type (read, write, or both) is controlled by
119119
OR ing together the bits <acronym>INV_READ</acronym> and
120-
<acronym>INV_WRITE</acronym>. If
121-
the large object should be archived -- that is, if
122-
historical versions of it should be moved periodically to
123-
a special archive relation -- then the <acronym>INV_ARCHIVE</acronym> bit
124-
should be set. The low-order sixteen bits of mask are
120+
<acronym>INV_WRITE</acronym>. The low-order sixteen bits of mask are
125121
the storage manager number on which the large object
126122
should reside. For sites other than Berkeley, these
127123
bits should always be zero.
128124
The commands below create an (Inversion) large object:
129125
<programlisting>
130-
inv_oid = lo_creat(INV_READ|INV_WRITE|INV_ARCHIVE);
126+
inv_oid = lo_creat(INV_READ|INV_WRITE);
131127
</programlisting>
132128
</para>
133129
</sect2>

doc/src/sgml/pygresql.sgml

+2-3
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
<!-- $Header: /cvsroot/pgsql/doc/src/sgml/Attic/pygresql.sgml,v 1.1 2001/03/04 18:54:07 petere Exp $ -->
1+
<!-- $Header: /cvsroot/pgsql/doc/src/sgml/Attic/pygresql.sgml,v 1.2 2001/09/10 04:15:41 momjian Exp $ -->
22

33
<chapter id="pygresql">
44
<title><application>PyGreSQL</application> - <application>Python</application> Interface</title>
@@ -418,7 +418,6 @@ make && make install
418418
<varlistentry>
419419
<term><varname>INV_READ</varname></term>
420420
<term><varname>INV_WRITE</varname></term>
421-
<term><varname>INV_ARCHIVE</varname></term>
422421
<listitem>
423422
<para>
424423
large objects access modes, used by
@@ -2253,7 +2252,7 @@ locreate(<replaceable>mode</replaceable>)
22532252
<para>
22542253
<function>locreate()</function> method creates a large object in the database.
22552254
The mode can be defined by OR-ing the constants defined in the pg module
2256-
(<literal>INV_READ, INV_WRITE</literal> and <literal>INV_ARCHIVE</literal>).
2255+
(<literal>INV_READ and INV_WRITE</literal>).
22572256
</para>
22582257
</refsect1>
22592258

0 commit comments

Comments
 (0)