diff options
| author | Tom Lane <tgl@sss.pgh.pa.us> | 2005-06-21 20:45:44 +0000 |
|---|---|---|
| committer | Tom Lane <tgl@sss.pgh.pa.us> | 2005-06-21 20:45:44 +0000 |
| commit | 7a28de20523bb695e8ec819514df82a18a7656b3 (patch) | |
| tree | 4427292f4323028cfbcb501c8dcb716caa2a8ddc /src/bin/pg_dump/pg_backup.h | |
| parent | b49d871f6ac58ff63a3147575494fb8fe9c6a5eb (diff) | |
| download | postgresql-7a28de20523bb695e8ec819514df82a18a7656b3.tar.gz | |
pg_dump can now dump large objects even in plain-text output mode, by
using the recently added lo_create() function. The restore logic in
pg_restore is greatly simplified as well, since there's no need anymore
to try to adjust database references to match a new set of blob OIDs.
Diffstat (limited to 'src/bin/pg_dump/pg_backup.h')
| -rw-r--r-- | src/bin/pg_dump/pg_backup.h | 6 |
1 files changed, 1 insertions, 5 deletions
diff --git a/src/bin/pg_dump/pg_backup.h b/src/bin/pg_dump/pg_backup.h index 6a04cf14b3..786d427160 100644 --- a/src/bin/pg_dump/pg_backup.h +++ b/src/bin/pg_dump/pg_backup.h @@ -15,7 +15,7 @@ * * * IDENTIFICATION - * $PostgreSQL: pgsql/src/bin/pg_dump/pg_backup.h,v 1.35 2005/06/09 17:56:51 momjian Exp $ + * $PostgreSQL: pgsql/src/bin/pg_dump/pg_backup.h,v 1.36 2005/06/21 20:45:44 tgl Exp $ * *------------------------------------------------------------------------- */ @@ -152,10 +152,6 @@ extern void ArchiveEntry(Archive *AHX, /* Called to write *data* to the archive */ extern size_t WriteData(Archive *AH, const void *data, size_t dLen); -/* -extern int StartBlobs(Archive* AH); -extern int EndBlobs(Archive* AH); -*/ extern int StartBlob(Archive *AH, Oid oid); extern int EndBlob(Archive *AH, Oid oid); |
