]> granicus.if.org Git - postgresql/commitdiff
Show schema name for REINDEX.
authorBruce Momjian <bruce@momjian.us>
Tue, 1 Jun 2010 00:33:23 +0000 (00:33 +0000)
committerBruce Momjian <bruce@momjian.us>
Tue, 1 Jun 2010 00:33:23 +0000 (00:33 +0000)
Greg Sabino Mullane

src/backend/commands/indexcmds.c

index 482f5b3a38a01e16ee30dc821a1efa1b94dd7e4a..86871e26a40c607350d55b15b551fe498cf8c1cd 100644 (file)
@@ -8,7 +8,7 @@
  *
  *
  * 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());
                if (reindex_relation(relid, true, false))
                        ereport(NOTICE,
-                                       (errmsg("table \"%s\" was reindexed",
+                                       (errmsg("table \"%s.%s\" was reindexed",
+                                                       get_namespace_name(get_rel_namespace(relid)),
                                                        get_rel_name(relid))));
                PopActiveSnapshot();
                CommitTransactionCommand();