From bb35e499ea4977f59a7d62ccdb7ec58d6a2119c8 Mon Sep 17 00:00:00 2001 From: Bruce Momjian Date: Mon, 10 Sep 2001 04:15:41 +0000 Subject: [PATCH] Remove mention of INV_ARCHIVE. --- doc/src/sgml/libpgtcl.sgml | 2 +- doc/src/sgml/lobj.sgml | 10 +++------- doc/src/sgml/pygresql.sgml | 5 ++--- 3 files changed, 6 insertions(+), 11 deletions(-) diff --git a/doc/src/sgml/libpgtcl.sgml b/doc/src/sgml/libpgtcl.sgml index 04c1b4ffa6..24bb53bf53 100644 --- a/doc/src/sgml/libpgtcl.sgml +++ b/doc/src/sgml/libpgtcl.sgml @@ -1134,7 +1134,7 @@ The oid of the large object created. Usage -mode can be any OR'ing together of INV_READ, INV_WRITE, and INV_ARCHIVE. +mode can be any OR'ing together of INV_READ and INV_WRITE. The OR delimiter character is "|". [pg_lo_creat $conn "INV_READ|INV_WRITE"] diff --git a/doc/src/sgml/lobj.sgml b/doc/src/sgml/lobj.sgml index 82d115b638..9467b85adf 100644 --- a/doc/src/sgml/lobj.sgml +++ b/doc/src/sgml/lobj.sgml @@ -1,5 +1,5 @@ @@ -117,17 +117,13 @@ Oid lo_creat(PGconn *conn, int $PGROOT/src/backend/libpq/libpq-fs.h The access type (read, write, or both) is controlled by OR ing together the bits INV_READ and - INV_WRITE. If - the large object should be archived -- that is, if - historical versions of it should be moved periodically to - a special archive relation -- then the INV_ARCHIVE bit - should be set. The low-order sixteen bits of mask are + INV_WRITE. The low-order sixteen bits of mask are the storage manager number on which the large object should reside. For sites other than Berkeley, these bits should always be zero. The commands below create an (Inversion) large object: -inv_oid = lo_creat(INV_READ|INV_WRITE|INV_ARCHIVE); +inv_oid = lo_creat(INV_READ|INV_WRITE); diff --git a/doc/src/sgml/pygresql.sgml b/doc/src/sgml/pygresql.sgml index 28c13d5daa..5396791e14 100644 --- a/doc/src/sgml/pygresql.sgml +++ b/doc/src/sgml/pygresql.sgml @@ -1,4 +1,4 @@ - + <application>PyGreSQL</application> - <application>Python</application> Interface @@ -418,7 +418,6 @@ make && make install INV_READ INV_WRITE - INV_ARCHIVE large objects access modes, used by @@ -2253,7 +2252,7 @@ locreate(mode) locreate() method creates a large object in the database. The mode can be defined by OR-ing the constants defined in the pg module - (INV_READ, INV_WRITE and INV_ARCHIVE). + (INV_READ and INV_WRITE). -- GitLab