diff options
author | Heikki Linnakangas <heikki.linnakangas@iki.fi> | 2011-01-23 23:10:15 +0200 |
---|---|---|
committer | Heikki Linnakangas <heikki.linnakangas@iki.fi> | 2011-01-23 23:10:15 +0200 |
commit | 7f508f1c6b515df66d27f860b2faa7b5761fa55d (patch) | |
tree | 4c7390c61e8a890c22d97f83364b89f729f21ca8 /src/bin/pg_dump/pg_backup_tar.c | |
parent | f36920796ec1335733493f7860d6f2f711c20398 (diff) | |
download | postgresql-7f508f1c6b515df66d27f860b2faa7b5761fa55d.tar.gz postgresql-7f508f1c6b515df66d27f860b2faa7b5761fa55d.zip |
Add 'directory' format to pg_dump. The new directory format is compatible
with the 'tar' format, in that untarring a tar format archive produces a
valid directory format archive.
Joachim Wieland and Heikki Linnakangas
Diffstat (limited to 'src/bin/pg_dump/pg_backup_tar.c')
-rw-r--r-- | src/bin/pg_dump/pg_backup_tar.c | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/src/bin/pg_dump/pg_backup_tar.c b/src/bin/pg_dump/pg_backup_tar.c index 006f7dab72e..d0f6a589b32 100644 --- a/src/bin/pg_dump/pg_backup_tar.c +++ b/src/bin/pg_dump/pg_backup_tar.c @@ -4,6 +4,10 @@ * * This file is copied from the 'files' format file, but dumps data into * one temp file then sends it to the output TAR archive. + * + * NOTE: If you untar the created 'tar' file, the resulting files are + * compatible with the 'directory' format. Please keep the two formats in + * sync. * * See the headers to pg_backup_files & pg_restore for more details. * @@ -167,7 +171,7 @@ InitArchiveFmt_Tar(ArchiveHandle *AH) die_horribly(AH, modulename, "out of memory\n"); /* - * Now open the TOC file + * Now open the tar file, and load the TOC if we're in read mode. */ if (AH->mode == archModeWrite) { |