OSDN Git Service

pg_dump can now dump large objects even in plain-text output mode, by
authorTom Lane <tgl@sss.pgh.pa.us>
Tue, 21 Jun 2005 20:45:44 +0000 (20:45 +0000)
committerTom Lane <tgl@sss.pgh.pa.us>
Tue, 21 Jun 2005 20:45:44 +0000 (20:45 +0000)
commit7a28de20523bb695e8ec819514df82a18a7656b3
tree4427292f4323028cfbcb501c8dcb716caa2a8ddc
parentb49d871f6ac58ff63a3147575494fb8fe9c6a5eb
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.
15 files changed:
doc/src/sgml/backup.sgml
doc/src/sgml/installation.sgml
doc/src/sgml/ref/pg_dump.sgml
doc/src/sgml/ref/pg_dumpall.sgml
doc/src/sgml/ref/pg_restore.sgml
src/bin/pg_dump/README
src/bin/pg_dump/pg_backup.h
src/bin/pg_dump/pg_backup_archiver.c
src/bin/pg_dump/pg_backup_archiver.h
src/bin/pg_dump/pg_backup_custom.c
src/bin/pg_dump/pg_backup_db.c
src/bin/pg_dump/pg_backup_db.h
src/bin/pg_dump/pg_backup_files.c
src/bin/pg_dump/pg_backup_null.c
src/bin/pg_dump/pg_dump.c