|
8 | 8 | *
|
9 | 9 | *
|
10 | 10 | * IDENTIFICATION
|
11 |
| - * $PostgreSQL: pgsql/src/backend/commands/indexcmds.c,v 1.196 2010/05/27 15:59:10 tgl Exp $ |
| 11 | + * $PostgreSQL: pgsql/src/backend/commands/indexcmds.c,v 1.197 2010/06/01 00:33:23 momjian Exp $ |
12 | 12 | *
|
13 | 13 | *-------------------------------------------------------------------------
|
14 | 14 | */
|
@@ -1749,7 +1749,8 @@ ReindexDatabase(const char *databaseName, bool do_system, bool do_user)
|
1749 | 1749 | PushActiveSnapshot(GetTransactionSnapshot());
|
1750 | 1750 | if (reindex_relation(relid, true, false))
|
1751 | 1751 | ereport(NOTICE,
|
1752 |
| -(errmsg("table \"%s\" was reindexed", |
| 1752 | +(errmsg("table \"%s.%s\" was reindexed", |
| 1753 | +get_namespace_name(get_rel_namespace(relid)), |
1753 | 1754 | get_rel_name(relid))));
|
1754 | 1755 | PopActiveSnapshot();
|
1755 | 1756 | CommitTransactionCommand();
|
|