diff --git a/src/backend/commands/tablecmds.c b/src/backend/commands/tablecmds.c
index 18cea28df12f79028abd87bb87f8631b3483a40e..f6c9b48c09725eb5b29885ad86d802ad0afb50b1 100644
--- a/src/backend/commands/tablecmds.c
+++ b/src/backend/commands/tablecmds.c
@@ -8,7 +8,7 @@
  *
  *
  * IDENTIFICATION
- *	  $Header: /cvsroot/pgsql/src/backend/commands/tablecmds.c,v 1.1 2002/04/15 05:22:03 tgl Exp $
+ *	  $Header: /cvsroot/pgsql/src/backend/commands/tablecmds.c,v 1.2 2002/04/15 23:45:07 momjian Exp $
  *
  *-------------------------------------------------------------------------
  */
@@ -1505,7 +1505,7 @@ AlterTableCreateToastTable(Oid relOid, bool silent)
 	 * Create the toast table and its index
 	 */
 	sprintf(toast_relname, "pg_toast_%u", relOid);
-	sprintf(toast_idxname, "pg_toast_%u_idx", relOid);
+	sprintf(toast_idxname, "pg_toast_%u_index", relOid);
 
 	/* this is pretty painful...  need a tuple descriptor */
 	tupdesc = CreateTemplateTupleDesc(3);
diff --git a/src/include/catalog/catversion.h b/src/include/catalog/catversion.h
index 457bcd43fb93aafd2b8f464578fc4924c9e8b335..1ef1940ee0f402025653818fa88443621b95c9da 100644
--- a/src/include/catalog/catversion.h
+++ b/src/include/catalog/catversion.h
@@ -37,7 +37,7 @@
  * Portions Copyright (c) 1996-2001, PostgreSQL Global Development Group
  * Portions Copyright (c) 1994, Regents of the University of California
  *
- * $Id: catversion.h,v 1.114 2002/04/11 20:00:10 tgl Exp $
+ * $Id: catversion.h,v 1.115 2002/04/15 23:45:07 momjian Exp $
  *
  *-------------------------------------------------------------------------
  */
@@ -53,6 +53,6 @@
  */
 
 /*							yyyymmddN */
-#define CATALOG_VERSION_NO	200204101
+#define CATALOG_VERSION_NO	200204151
 
 #endif