pgsql-server/src/bin/scripts clusterdb
Started by Bruce Momjianalmost 24 years ago1 messagescomitters
CVSROOT: /cvsroot
Module name: pgsql-server
Changes by: momjian@postgresql.org 02/09/11 20:18:15
Modified files:
src/bin/scripts: clusterdb
Log message:
BTW, clusterdb is not schema-aware and will surely fail in any database
where more than one schema is in use, because it doesn't trouble to
schema-qualify table names.
Ok, the following patch should solve this concern. It also tries to
connect as little times as possible (the previous one would connect one
time per table plus one per database; this one connects two times per
database).
Alvaro Herrera