]> granicus.if.org Git - postgresql/commit
Fix pg_dumpall with database names containing =
authorHeikki Linnakangas <heikki.linnakangas@iki.fi>
Wed, 20 Feb 2013 15:08:54 +0000 (17:08 +0200)
committerHeikki Linnakangas <heikki.linnakangas@iki.fi>
Wed, 20 Feb 2013 15:08:54 +0000 (17:08 +0200)
commitf435cd1d385859a0cdb1d70fccc21dde2b1ee116
tree95f2d37fc9f8a33502f8d0b4297f2d6c0f28faf4
parent2930c05634bcb7491bc443a493405e927ed08443
Fix pg_dumpall with database names containing =

If a database name contained a '=' character, pg_dumpall failed. The problem
was in the way pg_dumpall passes the database name to pg_dump on the
command line. If it contained a '=' character, pg_dump would interpret it
as a libpq connection string instead of a plain database name.

To fix, pass the database name to pg_dump as a connection string,
"dbname=foo", with the database name escaped if necessary.

Back-patch to all supported branches.
src/bin/pg_dump/pg_dumpall.c