diff options
| author | Bruce Momjian <bruce@momjian.us> | 2007-03-03 19:52:47 +0000 |
|---|---|---|
| committer | Bruce Momjian <bruce@momjian.us> | 2007-03-03 19:52:47 +0000 |
| commit | 0763a5650147a5573a5a4b81de5dd819f010f8e8 (patch) | |
| tree | f2190486ccd631f016f4451f238d6383b7d1b10e /src/include/libpq/be-fsstubs.h | |
| parent | 90d76525c5cc2f3f4781351a1d99be839dfa2874 (diff) | |
| download | postgresql-0763a5650147a5573a5a4b81de5dd819f010f8e8.tar.gz | |
Add lo_truncate() to backend and libpq for large object truncation.
Kris Jurka
Diffstat (limited to 'src/include/libpq/be-fsstubs.h')
| -rw-r--r-- | src/include/libpq/be-fsstubs.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/include/libpq/be-fsstubs.h b/src/include/libpq/be-fsstubs.h index 6119220310..cd02538ab6 100644 --- a/src/include/libpq/be-fsstubs.h +++ b/src/include/libpq/be-fsstubs.h @@ -7,7 +7,7 @@ * Portions Copyright (c) 1996-2007, PostgreSQL Global Development Group * Portions Copyright (c) 1994, Regents of the University of California * - * $PostgreSQL: pgsql/src/include/libpq/be-fsstubs.h,v 1.28 2007/01/05 22:19:55 momjian Exp $ + * $PostgreSQL: pgsql/src/include/libpq/be-fsstubs.h,v 1.29 2007/03/03 19:52:46 momjian Exp $ * *------------------------------------------------------------------------- */ @@ -34,6 +34,7 @@ extern Datum lowrite(PG_FUNCTION_ARGS); extern Datum lo_lseek(PG_FUNCTION_ARGS); extern Datum lo_tell(PG_FUNCTION_ARGS); extern Datum lo_unlink(PG_FUNCTION_ARGS); +extern Datum lo_truncate(PG_FUNCTION_ARGS); /* * These are not fmgr-callable, but are available to C code. |
