diff options
author | Robert Haas <rhaas@postgresql.org> | 2010-07-22 01:25:01 +0000 |
---|---|---|
committer | Robert Haas <rhaas@postgresql.org> | 2010-07-22 01:25:01 +0000 |
commit | 4da29da18142b24a190c250f6970d8f268596e82 (patch) | |
tree | 9df1497fb33477f952139d7bc03ed3916928e124 /src | |
parent | ce68df468a41d8dbb992184aad490c07d02ca721 (diff) | |
download | postgresql-4da29da18142b24a190c250f6970d8f268596e82.tar.gz postgresql-4da29da18142b24a190c250f6970d8f268596e82.zip |
Fix bogus server version in pg_dumpall --quote-all-identifiers.
Diffstat (limited to 'src')
-rw-r--r-- | src/bin/pg_dump/pg_dumpall.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/bin/pg_dump/pg_dumpall.c b/src/bin/pg_dump/pg_dumpall.c index 3f9b77739fa..260b6684edb 100644 --- a/src/bin/pg_dump/pg_dumpall.c +++ b/src/bin/pg_dump/pg_dumpall.c @@ -6,7 +6,7 @@ * Portions Copyright (c) 1994, Regents of the University of California * * - * $PostgreSQL: pgsql/src/bin/pg_dump/pg_dumpall.c,v 1.135 2010/07/22 01:22:34 rhaas Exp $ + * $PostgreSQL: pgsql/src/bin/pg_dump/pg_dumpall.c,v 1.136 2010/07/22 01:25:01 rhaas Exp $ * *------------------------------------------------------------------------- */ @@ -444,7 +444,7 @@ main(int argc, char *argv[]) } /* Force quoting of all identifiers if requested. */ - if (quote_all_identifiers && server_version >= 90000) + if (quote_all_identifiers && server_version >= 90100) executeCommand(conn, "SET quote_all_identifiers = true"); fprintf(OPF, "--\n-- PostgreSQL database cluster dump\n--\n\n"); |