File tree 1 file changed +3
-3
lines changed
1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change 8
8
*
9
9
*
10
10
* IDENTIFICATION
11
- * $Header: /cvsroot/pgsql/src/backend/commands/indexcmds.c,v 1.112 2003/09/29 00:05:24 petere Exp $
11
+ * $Header: /cvsroot/pgsql/src/backend/commands/indexcmds.c,v 1.113 2003/09/29 16: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 */
You can’t perform that action at this time.
0 commit comments