Skip to content
Snippets Groups Projects
Commit db168e41 authored by intrigeri's avatar intrigeri
Browse files

pgsql: don't produce empty uncompressed backups (Redmine#3820).

parent ae6f3bb7
Branches
Tags
No related merge requests found
......@@ -10,6 +10,8 @@ version 1.0 -- UNRELEASED
(Closes: #657201)
mysql:
. Don't attempt to dump performance_schema database (Redmine#3741).
pgsql:
. Don't produce empty uncompressed backups (Redmine#3820).
rysnc:
. Fix numericids option (Redmine#3691).
. Mangle $rsync_options just afterwards (Redmine#3702).
......
......@@ -186,7 +186,7 @@ else
if [ "$compress" == "yes" ]; then
dumpcmd="set -o pipefail ; $PGSQLDUMP --format=$format ${disablecustomcompress} $db | $GZIP $GZIP_OPTS > '$backupdir/${db}.${dumpext}.gz'"
else
dumpcmd="$PGSQLDUMP --format=$format ${disablecustomcompress} $db | > '$backupdir/${db}.${dumpext}'"
dumpcmd="$PGSQLDUMP --format=$format ${disablecustomcompress} $db > '$backupdir/${db}.${dumpext}'"
fi
if [ $usevserver = yes ]; then
execstr="$VSERVER $vsname exec su - $PGSQLUSER -s /bin/bash -c \"$dumpcmd\""
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment