Location via proxy:   [ UP ]  
[Report a bug]   [Manage cookies]                
Skip to content

Commit 2d480b9

Browse files
committed
Eliminate another gratuitous message wording difference.
1 parent a776bd9 commit 2d480b9

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

src/backend/commands/indexcmds.c

+3-3
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
*
99
*
1010
* 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 $
1212
*
1313
*-------------------------------------------------------------------------
1414
*/
@@ -106,7 +106,7 @@ DefineIndex(RangeVar *heapRelation,
106106
rel->rd_rel->relkind != RELKIND_UNCATALOGED)
107107
ereport(ERROR,
108108
(errcode(ERRCODE_WRONG_OBJECT_TYPE),
109-
errmsg("relation \"%s\" is not a table",
109+
errmsg("\"%s\" is not a table",
110110
heapRelation->relname)));
111111

112112
relationId = RelationGetRelid(rel);
@@ -636,7 +636,7 @@ ReindexTable(RangeVar *relation, bool force /* currently unused */ )
636636
((Form_pg_class) GETSTRUCT(tuple))->relkind != RELKIND_TOASTVALUE)
637637
ereport(ERROR,
638638
(errcode(ERRCODE_WRONG_OBJECT_TYPE),
639-
errmsg("relation \"%s\" is not a table",
639+
errmsg("\"%s\" is not a table",
640640
relation->relname)));
641641

642642
/* Check permissions */

0 commit comments

Comments
 (0)