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
8436f9a0
Commit
8436f9a0
authored
Mar 19, 2008
by
Tatsuo Ishii
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Add libpq new API lo_import_with_oid() which is similar to lo_import()
except that lob's oid can be specified.
parent
f755f2fe
Changes
4
Show whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
57 additions
and
6 deletions
+57
-6
doc/src/sgml/lobj.sgml
doc/src/sgml/lobj.sgml
+23
-1
src/interfaces/libpq/exports.txt
src/interfaces/libpq/exports.txt
+2
-1
src/interfaces/libpq/fe-lobj.c
src/interfaces/libpq/fe-lobj.c
+30
-3
src/interfaces/libpq/libpq-fe.h
src/interfaces/libpq/libpq-fe.h
+2
-1
No files found.
doc/src/sgml/lobj.sgml
View file @
8436f9a0
<!-- $PostgreSQL: pgsql/doc/src/sgml/lobj.sgml,v 1.4
6 2007/03/14 00:15:26 tgl
Exp $ -->
<!-- $PostgreSQL: pgsql/doc/src/sgml/lobj.sgml,v 1.4
7 2008/03/19 00:39:33 ishii
Exp $ -->
<chapter id="largeObjects">
<title id="largeObjects-title">Large Objects</title>
...
...
@@ -161,6 +161,28 @@ Oid lo_import(PGconn *conn, const char *filename);
the server; so it must exist in the client file system and be readable
by the client application.
</para>
<para>
The function
<synopsis>
Oid lo_import_with_oid(PGconn *conn, const char *filename, Oid lobjId);
</synopsis>
<indexterm><primary>lo_import_with_oid</></>
also imports a new large object. The OID to be assigned can be
specified by <replaceable class="parameter">lobjId</replaceable>;
if so, failure occurs if that OID is already in use for some large
object. If <replaceable class="parameter">lobjId</replaceable>
is <symbol>InvalidOid</symbol> (zero) then <function>lo_import_with_oid</> assigns an unused
OID (this is the same behavior as <function>lo_import</>).
The return value is the OID that was assigned to the new large object,
or <symbol>InvalidOid</symbol> (zero) on failure.
</para>
<para>
<function>lo_import_with_oid</> is new as of <productname>PostgreSQL</productname>
8.4 and uses <function>lo_create</function> internally which is new in 8.1; if this function is run against 8.0 or before, it will
fail and return <symbol>InvalidOid</symbol>.
</para>
</sect2>
<sect2>
...
...
src/interfaces/libpq/exports.txt
View file @
8436f9a0
# $PostgreSQL: pgsql/src/interfaces/libpq/exports.txt,v 1.1
8 2007/12/09 19:01:40 tgl
Exp $
# $PostgreSQL: pgsql/src/interfaces/libpq/exports.txt,v 1.1
9 2008/03/19 00:39:33 ishii
Exp $
# Functions to be exported by libpq DLLs
PQconnectdb 1
PQsetdbLogin 2
...
...
@@ -140,3 +140,4 @@ lo_truncate 137
PQconnectionUsedPassword 138
pg_valid_server_encoding_id 139
PQconnectionNeedsPassword 140
lo_import_with_oid 141
src/interfaces/libpq/fe-lobj.c
View file @
8436f9a0
...
...
@@ -8,7 +8,7 @@
*
*
* IDENTIFICATION
* $PostgreSQL: pgsql/src/interfaces/libpq/fe-lobj.c,v 1.6
4 2008/01/01 19:46:00 momjian
Exp $
* $PostgreSQL: pgsql/src/interfaces/libpq/fe-lobj.c,v 1.6
5 2008/03/19 00:39:33 ishii
Exp $
*
*-------------------------------------------------------------------------
*/
...
...
@@ -41,6 +41,8 @@
static
int
lo_initialize
(
PGconn
*
conn
);
static
Oid
lo_import_internal
(
PGconn
*
conn
,
const
char
*
filename
,
const
Oid
oid
);
/*
* lo_open
...
...
@@ -483,6 +485,27 @@ lo_unlink(PGconn *conn, Oid lobjId)
Oid
lo_import
(
PGconn
*
conn
,
const
char
*
filename
)
{
return
lo_import_internal
(
conn
,
filename
,
InvalidOid
);
}
/*
* lo_import_with_oid -
* imports a file as an (inversion) large object.
* large object id can be specified.
*
* returns the oid of that object upon success,
* returns InvalidOid upon failure
*/
Oid
lo_import_with_oid
(
PGconn
*
conn
,
const
char
*
filename
,
Oid
lobjId
)
{
return
lo_import_internal
(
conn
,
filename
,
lobjId
);
}
static
Oid
lo_import_internal
(
PGconn
*
conn
,
const
char
*
filename
,
Oid
oid
)
{
int
fd
;
int
nbytes
,
...
...
@@ -507,10 +530,14 @@ lo_import(PGconn *conn, const char *filename)
/*
* create an inversion object
*/
if
(
oid
==
InvalidOid
)
lobjOid
=
lo_creat
(
conn
,
INV_READ
|
INV_WRITE
);
else
lobjOid
=
lo_create
(
conn
,
oid
);
if
(
lobjOid
==
InvalidOid
)
{
/* we assume lo_creat() already set a suitable error message */
/* we assume lo_creat
e
() already set a suitable error message */
(
void
)
close
(
fd
);
return
InvalidOid
;
}
...
...
src/interfaces/libpq/libpq-fe.h
View file @
8436f9a0
...
...
@@ -7,7 +7,7 @@
* Portions Copyright (c) 1996-2008, PostgreSQL Global Development Group
* Portions Copyright (c) 1994, Regents of the University of California
*
* $PostgreSQL: pgsql/src/interfaces/libpq/libpq-fe.h,v 1.14
1 2008/01/01 19:46:00 momjian
Exp $
* $PostgreSQL: pgsql/src/interfaces/libpq/libpq-fe.h,v 1.14
2 2008/03/19 00:39:33 ishii
Exp $
*
*-------------------------------------------------------------------------
*/
...
...
@@ -495,6 +495,7 @@ extern int lo_tell(PGconn *conn, int fd);
extern
int
lo_truncate
(
PGconn
*
conn
,
int
fd
,
size_t
len
);
extern
int
lo_unlink
(
PGconn
*
conn
,
Oid
lobjId
);
extern
Oid
lo_import
(
PGconn
*
conn
,
const
char
*
filename
);
extern
Oid
lo_import_with_oid
(
PGconn
*
conn
,
const
char
*
filename
,
Oid
lobjId
);
extern
int
lo_export
(
PGconn
*
conn
,
Oid
lobjId
,
const
char
*
filename
);
/* === in fe-misc.c === */
...
...
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