|
8 | 8 | *
|
9 | 9 | *
|
10 | 10 | * IDENTIFICATION
|
11 |
| - * $Header: /cvsroot/pgsql/src/backend/commands/indexcmds.c,v 1.112 2003/09/2900:05:24 petere Exp $ |
| 11 | + * $Header: /cvsroot/pgsql/src/backend/commands/indexcmds.c,v 1.113 2003/09/2916:37:29 petere Exp $ |
12 | 12 | *
|
13 | 13 | *-------------------------------------------------------------------------
|
14 | 14 | */
|
@@ -106,7 +106,7 @@ DefineIndex(RangeVar *heapRelation,
|
106 | 106 | rel->rd_rel->relkind!=RELKIND_UNCATALOGED)
|
107 | 107 | ereport(ERROR,
|
108 | 108 | (errcode(ERRCODE_WRONG_OBJECT_TYPE),
|
109 |
| -errmsg("relation\"%s\" is not a table", |
| 109 | +errmsg("\"%s\" is not a table", |
110 | 110 | heapRelation->relname)));
|
111 | 111 |
|
112 | 112 | relationId=RelationGetRelid(rel);
|
@@ -636,7 +636,7 @@ ReindexTable(RangeVar *relation, bool force /* currently unused */ )
|
636 | 636 | ((Form_pg_class)GETSTRUCT(tuple))->relkind!=RELKIND_TOASTVALUE)
|
637 | 637 | ereport(ERROR,
|
638 | 638 | (errcode(ERRCODE_WRONG_OBJECT_TYPE),
|
639 |
| -errmsg("relation\"%s\" is not a table", |
| 639 | +errmsg("\"%s\" is not a table", |
640 | 640 | relation->relname)));
|
641 | 641 |
|
642 | 642 | /* Check permissions */
|
|