*** pgsql/src/backend/commands/indexcmds.c 2010/05/27 15:59:10 1.196 --- pgsql/src/backend/commands/indexcmds.c 2010/06/01 00:33:23 1.197 *************** *** 8,14 **** * * * IDENTIFICATION ! * $PostgreSQL: pgsql/src/backend/commands/indexcmds.c,v 1.195 2010/03/22 15:24:11 sriggs Exp $ * *------------------------------------------------------------------------- */ --- 8,14 ---- * * * IDENTIFICATION ! * $PostgreSQL: pgsql/src/backend/commands/indexcmds.c,v 1.196 2010/05/27 15:59:10 tgl Exp $ * *------------------------------------------------------------------------- */ *************** ReindexDatabase(const char *databaseName *** 1749,1755 **** PushActiveSnapshot(GetTransactionSnapshot()); if (reindex_relation(relid, true, false)) ereport(NOTICE, ! (errmsg("table \"%s\" was reindexed", get_rel_name(relid)))); PopActiveSnapshot(); CommitTransactionCommand(); --- 1749,1756 ---- PushActiveSnapshot(GetTransactionSnapshot()); if (reindex_relation(relid, true, false)) ereport(NOTICE, ! (errmsg("table \"%s.%s\" was reindexed", ! get_namespace_name(get_rel_namespace(relid)), get_rel_name(relid)))); PopActiveSnapshot(); CommitTransactionCommand();