diff options
| author | Tatsuo Ishii | 2012-10-06 23:36:48 +0000 |
|---|---|---|
| committer | Tatsuo Ishii | 2012-10-06 23:36:48 +0000 |
| commit | 461ef73f0977c95c9452680495bc161618db9227 (patch) | |
| tree | ef9883b9fbbb57875a7ec7023fce944f840afb71 /src/include/libpq | |
| parent | ae835c7d6e202e99796c58093ef781477e54c459 (diff) | |
Add API for 64-bit large object access. Now users can access up to
4TB large objects (standard 8KB BLCKSZ case). For this purpose new
libpq API lo_lseek64, lo_tell64 and lo_truncate64 are added. Also
corresponding new backend functions lo_lseek64, lo_tell64 and
lo_truncate64 are added. inv_api.c is changed to handle 64-bit
offsets.
Patch contributed by Nozomi Anzai (backend side) and Yugo Nagata
(frontend side, docs, regression tests and example program). Reviewed
by Kohei Kaigai. Committed by Tatsuo Ishii with minor editings.
Diffstat (limited to 'src/include/libpq')
| -rw-r--r-- | src/include/libpq/be-fsstubs.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/include/libpq/be-fsstubs.h b/src/include/libpq/be-fsstubs.h index 0c832da6e43..d74ea0eee25 100644 --- a/src/include/libpq/be-fsstubs.h +++ b/src/include/libpq/be-fsstubs.h @@ -34,8 +34,11 @@ extern Datum lowrite(PG_FUNCTION_ARGS); extern Datum lo_lseek(PG_FUNCTION_ARGS); extern Datum lo_tell(PG_FUNCTION_ARGS); +extern Datum lo_lseek64(PG_FUNCTION_ARGS); +extern Datum lo_tell64(PG_FUNCTION_ARGS); extern Datum lo_unlink(PG_FUNCTION_ARGS); extern Datum lo_truncate(PG_FUNCTION_ARGS); +extern Datum lo_truncate64(PG_FUNCTION_ARGS); /* * compatibility option for access control |
