Index: trunk/backup/worker.py |
— | — | @@ -100,7 +100,7 @@ |
101 | 101 | |
102 | 102 | def saveSql(self, query, outfile): |
103 | 103 | """Pass some SQL commands to the server for this DB and save output to a file.""" |
104 | | - command = "echo %s | mysql -h %s -u %s %s %s | gzip" % shellEscape(( |
| 104 | + command = "echo %s | mysql -h %s -u %s %s %s -r | gzip" % shellEscape(( |
105 | 105 | query, |
106 | 106 | self.dbServer, |
107 | 107 | self.config.dbUser, |