diff options
author | Thomas G. Lockhart <lockhart@fourpalms.org> | 1998-10-06 05:35:42 +0000 |
---|---|---|
committer | Thomas G. Lockhart <lockhart@fourpalms.org> | 1998-10-06 05:35:42 +0000 |
commit | b53d36618f7594d8c58327245fcf3d2308f5bad6 (patch) | |
tree | ca8ebca641425e1c9b1ef0d66e86474fc92b1b35 /src | |
parent | fe9bf46bd44f757d29b52c5bef8e1d1c60a46829 (diff) |
Forgot to initialize double quote option to be enabled.
Diffstat (limited to 'src')
-rw-r--r-- | src/bin/pg_dump/pg_dump.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/bin/pg_dump/pg_dump.c b/src/bin/pg_dump/pg_dump.c index 8e4e32896ed..604a29ccdf1 100644 --- a/src/bin/pg_dump/pg_dump.c +++ b/src/bin/pg_dump/pg_dump.c @@ -21,7 +21,7 @@ * * * IDENTIFICATION - * $Header: /cvsroot/pgsql/src/bin/pg_dump/pg_dump.c,v 1.89 1998/10/06 03:08:59 momjian Exp $ + * $Header: /cvsroot/pgsql/src/bin/pg_dump/pg_dump.c,v 1.90 1998/10/06 05:35:42 thomas Exp $ * * Modifications - 6/10/96 - dave@bensoft.com - version 1.13.dhb * @@ -547,6 +547,7 @@ main(int argc, char **argv) int use_password = 0; g_verbose = false; + g_force_quotes = true; strcpy(g_comment_start, "-- "); g_comment_end[0] = '\0'; |