Commit 9c51b922 authored by Bruce Momjian's avatar Bruce Momjian

Add comment that pg_dump 'append' format is used only by pg_dump, per

Dave Page.
parent 760b988f
...@@ -12,7 +12,7 @@ ...@@ -12,7 +12,7 @@
* by PostgreSQL * by PostgreSQL
* *
* IDENTIFICATION * IDENTIFICATION
* $PostgreSQL: pgsql/src/bin/pg_dump/pg_dump.c,v 1.463 2007/03/22 20:18:49 momjian Exp $ * $PostgreSQL: pgsql/src/bin/pg_dump/pg_dump.c,v 1.464 2007/03/22 20:47:12 momjian Exp $
* *
*------------------------------------------------------------------------- *-------------------------------------------------------------------------
*/ */
...@@ -478,7 +478,7 @@ main(int argc, char **argv) ...@@ -478,7 +478,7 @@ main(int argc, char **argv)
/* open the output file */ /* open the output file */
if (pg_strcasecmp(format, "a") == 0 || pg_strcasecmp(format, "append") == 0) if (pg_strcasecmp(format, "a") == 0 || pg_strcasecmp(format, "append") == 0)
{ {
/* not documented */ /* This is used by pg_dumpall, and is not documented */
plainText = 1; plainText = 1;
g_fout = CreateArchive(filename, archNull, 0, archModeAppend); g_fout = CreateArchive(filename, archNull, 0, archModeAppend);
} }
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment