Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
P
Postgres FD Implementation
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Abuhujair Javed
Postgres FD Implementation
Commits
bb35e499
Commit
bb35e499
authored
Sep 10, 2001
by
Bruce Momjian
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Remove mention of INV_ARCHIVE.
parent
ea41e77c
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
6 additions
and
11 deletions
+6
-11
doc/src/sgml/libpgtcl.sgml
doc/src/sgml/libpgtcl.sgml
+1
-1
doc/src/sgml/lobj.sgml
doc/src/sgml/lobj.sgml
+3
-7
doc/src/sgml/pygresql.sgml
doc/src/sgml/pygresql.sgml
+2
-3
No files found.
doc/src/sgml/libpgtcl.sgml
View file @
bb35e499
...
...
@@ -1134,7 +1134,7 @@ The oid of the large object created.
<TITLE>Usage
</TITLE>
<PARA>
mode can be any OR'ing together of INV_READ
, INV_WRITE, and INV_ARCHIV
E.
mode can be any OR'ing together of INV_READ
and INV_WRIT
E.
The OR delimiter character is "|".
<ProgramListing>
[pg_lo_creat $conn "INV_READ|INV_WRITE"]
...
...
doc/src/sgml/lobj.sgml
View file @
bb35e499
<!--
$Header: /cvsroot/pgsql/doc/src/sgml/lobj.sgml,v 1.1
7 2001/09/10 03:02:06 ishii
Exp $
$Header: /cvsroot/pgsql/doc/src/sgml/lobj.sgml,v 1.1
8 2001/09/10 04:15:41 momjian
Exp $
-->
<chapter id="largeObjects">
...
...
@@ -117,17 +117,13 @@ Oid lo_creat(PGconn *<replaceable class="parameter">conn</replaceable>, int <rep
<filename>$<envar>PGROOT</envar>/src/backend/libpq/libpq-fs.h</filename>
The access type (read, write, or both) is controlled by
OR ing together the bits <acronym>INV_READ</acronym> and
<acronym>INV_WRITE</acronym>. 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 <acronym>INV_ARCHIVE</acronym> bit
should be set. The low-order sixteen bits of mask are
<acronym>INV_WRITE</acronym>. 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:
<programlisting>
inv_oid = lo_creat(INV_READ|INV_WRITE
|INV_ARCHIVE
);
inv_oid = lo_creat(INV_READ|INV_WRITE);
</programlisting>
</para>
</sect2>
...
...
doc/src/sgml/pygresql.sgml
View file @
bb35e499
<!-- $Header: /cvsroot/pgsql/doc/src/sgml/Attic/pygresql.sgml,v 1.
1 2001/03/04 18:54:07 petere
Exp $ -->
<!-- $Header: /cvsroot/pgsql/doc/src/sgml/Attic/pygresql.sgml,v 1.
2 2001/09/10 04:15:41 momjian
Exp $ -->
<chapter id="pygresql">
<title><application>PyGreSQL</application> - <application>Python</application> Interface</title>
...
...
@@ -418,7 +418,6 @@ make && make install
<varlistentry>
<term><varname>INV_READ</varname></term>
<term><varname>INV_WRITE</varname></term>
<term><varname>INV_ARCHIVE</varname></term>
<listitem>
<para>
large objects access modes, used by
...
...
@@ -2253,7 +2252,7 @@ locreate(<replaceable>mode</replaceable>)
<para>
<function>locreate()</function> method creates a large object in the database.
The mode can be defined by OR-ing the constants defined in the pg module
(<literal>INV_READ
, INV_WRITE</literal> and <literal>INV_ARCHIV
E</literal>).
(<literal>INV_READ
and INV_WRIT
E</literal>).
</para>
</refsect1>
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment