|
4 | 4 | *
|
5 | 5 | * Portions Copyright (c) 1996-2006, PostgreSQL Global Development Group
|
6 | 6 | *
|
7 |
| - * $PostgreSQL: pgsql/src/bin/scripts/reindexdb.c,v 1.6 2006/09/0202:43:07 momjian Exp $ |
| 7 | + * $PostgreSQL: pgsql/src/bin/scripts/reindexdb.c,v 1.7 2006/09/0217:10:17 momjian Exp $ |
8 | 8 | *
|
9 | 9 | *-------------------------------------------------------------------------
|
10 | 10 | */
|
@@ -229,13 +229,6 @@ reindex_one_database(const char *name, const char *dbname, const char *type,
|
229 | 229 |
|
230 | 230 | conn=connectDatabase(dbname,host,port,username,password,progname);
|
231 | 231 |
|
232 |
| -/* Suppress some NOTICE messages from REINDEX command */ |
233 |
| -if (quiet) |
234 |
| -{ |
235 |
| -result=PQexec(conn,"SET client_min_messages = warning"); |
236 |
| -PQclear(result); |
237 |
| -} |
238 |
| - |
239 | 232 | if (echo)
|
240 | 233 | printf("%s",sql.data);
|
241 | 234 | result=PQexec(conn,sql.data);
|
|