|
5 | 5 | * Portions Copyright (c) 1996-2009, PostgreSQL Global Development Group
|
6 | 6 | * Portions Copyright (c) 1994, Regents of the University of California
|
7 | 7 | *
|
8 |
| - * $PostgreSQL: pgsql/src/bin/scripts/vacuumdb.c,v 1.26 2009/04/28 02:37:09 momjian Exp $ |
| 8 | + * $PostgreSQL: pgsql/src/bin/scripts/vacuumdb.c,v 1.27 2009/10/16 10:38:25 heikki Exp $ |
9 | 9 | *
|
10 | 10 | *-------------------------------------------------------------------------
|
11 | 11 | */
|
@@ -195,10 +195,10 @@ vacuum_one_database(const char *dbname, bool full, bool verbose, bool analyze,
|
195 | 195 | appendPQExpBuffer(&sql,"VACUUM");
|
196 | 196 | if (full)
|
197 | 197 | appendPQExpBuffer(&sql," FULL");
|
198 |
| -if (verbose) |
199 |
| -appendPQExpBuffer(&sql," VERBOSE"); |
200 | 198 | if (freeze)
|
201 | 199 | appendPQExpBuffer(&sql," FREEZE");
|
| 200 | +if (verbose) |
| 201 | +appendPQExpBuffer(&sql," VERBOSE"); |
202 | 202 | if (analyze)
|
203 | 203 | appendPQExpBuffer(&sql," ANALYZE");
|
204 | 204 | if (table)
|
|