summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--src/bin/pg_dump/pg_dumpall2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/bin/pg_dump/pg_dumpall b/src/bin/pg_dump/pg_dumpall
index 854622043d1..8eef5d36c2a 100644
--- a/src/bin/pg_dump/pg_dumpall
+++ b/src/bin/pg_dump/pg_dumpall
@@ -4,7 +4,7 @@
# dumps all databases to standard output
# It also dumps the pg_user table
#
-psql -l -A -q -t|unesc|cut -d"|" -f1 | grep -v '^template1$' | \
+psql -l -A -q -t|cut -d"|" -f1 | grep -v '^template1$' | \
while read DATABASE
do
/bin/echo '\connect template1'