reindex.database.show.schema.name.diff

text/plain

Filename: reindex.database.show.schema.name.diff
Type: text/plain
Part: 0
Message: Show schema name on REINDEX DATABASE

Patch

Same data as JSON: GET /api/v1/attachments/:id/patch the parsed metadata as JSON — format, series position, per-file stats; never the diff bytes. API reference →
Format: context
File+
backend/commands/indexcmds.c 2 1
Index: backend/commands/indexcmds.c
===================================================================
RCS file: /projects/cvsroot/pgsql/src/backend/commands/indexcmds.c,v
retrieving revision 1.195
diff -c -r1.195 indexcmds.c
*** backend/commands/indexcmds.c	22 Mar 2010 15:24:11 -0000	1.195
--- backend/commands/indexcmds.c	5 Apr 2010 16:21:02 -0000
***************
*** 1721,1727 ****
  		PushActiveSnapshot(GetTransactionSnapshot());
  		if (reindex_relation(relid, true, false))
  			ereport(NOTICE,
! 					(errmsg("table \"%s\" was reindexed",
  							get_rel_name(relid))));
  		PopActiveSnapshot();
  		CommitTransactionCommand();
--- 1721,1728 ----
  		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();