diff options
author | Bruce Momjian <bruce@momjian.us> | 2011-09-10 16:39:02 -0400 |
---|---|---|
committer | Bruce Momjian <bruce@momjian.us> | 2011-09-10 16:39:02 -0400 |
commit | d68ccf536e950a07b5a7030bf609936fe65aab51 (patch) | |
tree | e368f820c32742c6747a1f33b1b0ae746e683be0 /src/bin/scripts/clusterdb.c | |
parent | 52ce20589a8bac4eccaea043b1fe283daaf4f9e3 (diff) | |
download | postgresql-d68ccf536e950a07b5a7030bf609936fe65aab51.tar.gz postgresql-d68ccf536e950a07b5a7030bf609936fe65aab51.zip |
Remove double-quoting of table names in clusterdb. BACKWARD COMPABILITY
BREAKAGE.
Remove double-quoting of index/table names in reindexdb. BACKWARD
COMPABILITY BREAKAGE.
Document thate user/database names are preserved with double-quoting by
command-line tools like vacuumdb.
Diffstat (limited to 'src/bin/scripts/clusterdb.c')
-rw-r--r-- | src/bin/scripts/clusterdb.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/bin/scripts/clusterdb.c b/src/bin/scripts/clusterdb.c index f4c317ae149..3742091e2a4 100644 --- a/src/bin/scripts/clusterdb.c +++ b/src/bin/scripts/clusterdb.c @@ -177,7 +177,7 @@ cluster_one_database(const char *dbname, bool verbose, const char *table, if (verbose) appendPQExpBuffer(&sql, " VERBOSE"); if (table) - appendPQExpBuffer(&sql, " %s", fmtId(table)); + appendPQExpBuffer(&sql, " %s", table); appendPQExpBuffer(&sql, ";\n"); conn = connectDatabase(dbname, host, port, username, prompt_password, progname); |