Show schema name for REINDEX.
Greg Sabino Mullane
This commit is contained in:
parent
a128991705
commit
309193bbd3
@ -8,7 +8,7 @@
|
|||||||
*
|
*
|
||||||
*
|
*
|
||||||
* IDENTIFICATION
|
* IDENTIFICATION
|
||||||
* $PostgreSQL: pgsql/src/backend/commands/indexcmds.c,v 1.196 2010/05/27 15:59:10 tgl Exp $
|
* $PostgreSQL: pgsql/src/backend/commands/indexcmds.c,v 1.197 2010/06/01 00:33:23 momjian Exp $
|
||||||
*
|
*
|
||||||
*-------------------------------------------------------------------------
|
*-------------------------------------------------------------------------
|
||||||
*/
|
*/
|
||||||
@ -1749,7 +1749,8 @@ ReindexDatabase(const char *databaseName, bool do_system, bool do_user)
|
|||||||
PushActiveSnapshot(GetTransactionSnapshot());
|
PushActiveSnapshot(GetTransactionSnapshot());
|
||||||
if (reindex_relation(relid, true, false))
|
if (reindex_relation(relid, true, false))
|
||||||
ereport(NOTICE,
|
ereport(NOTICE,
|
||||||
(errmsg("table \"%s\" was reindexed",
|
(errmsg("table \"%s.%s\" was reindexed",
|
||||||
|
get_namespace_name(get_rel_namespace(relid)),
|
||||||
get_rel_name(relid))));
|
get_rel_name(relid))));
|
||||||
PopActiveSnapshot();
|
PopActiveSnapshot();
|
||||||
CommitTransactionCommand();
|
CommitTransactionCommand();
|
||||||
|
Loading…
x
Reference in New Issue
Block a user