File tree Expand file tree Collapse file tree 2 files changed +5
-5
lines changed Expand file tree Collapse file tree 2 files changed +5
-5
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/tablecmds.c,v 1.84 2003/09/29 00:05:25 petere Exp $
11
+ * $Header: /cvsroot/pgsql/src/backend/commands/tablecmds.c,v 1.85 2003/10/02 06:36:37 petere Exp $
12
12
*
13
13
*-------------------------------------------------------------------------
14
14
*/
@@ -4090,7 +4090,7 @@ AlterTableCreateToastTable(Oid relOid, bool silent)
4090
4090
4091
4091
ereport (ERROR ,
4092
4092
(errcode (ERRCODE_OBJECT_NOT_IN_PREREQUISITE_STATE ),
4093
- errmsg ("tables \"%s\" already has a TOAST table" ,
4093
+ errmsg ("table \"%s\" already has a TOAST table" ,
4094
4094
RelationGetRelationName (rel ))));
4095
4095
}
4096
4096
Original file line number Diff line number Diff line change 6
6
* Portions Copyright (c) 1996-2003, PostgreSQL Global Development Group
7
7
* Portions Copyright (c) 1994, Regents of the University of California
8
8
*
9
- * $Header: /cvsroot/pgsql/src/backend/commands/user.c,v 1.127 2003/09/29 00:05:25 petere Exp $
9
+ * $Header: /cvsroot/pgsql/src/backend/commands/user.c,v 1.128 2003/10/02 06:36:37 petere Exp $
10
10
*
11
11
*-------------------------------------------------------------------------
12
12
*/
@@ -648,7 +648,7 @@ CreateUser(CreateUserStmt *stmt)
648
648
if (sysid_exists )
649
649
ereport (ERROR ,
650
650
(errcode (ERRCODE_DUPLICATE_OBJECT ),
651
- errmsg ("sysid %d is already assigned" , sysid )));
651
+ errmsg ("user ID %d is already assigned" , sysid )));
652
652
653
653
/* If no sysid given, use max existing id + 1 */
654
654
if (!havesysid )
@@ -1354,7 +1354,7 @@ CreateGroup(CreateGroupStmt *stmt)
1354
1354
if (sysid_exists )
1355
1355
ereport (ERROR ,
1356
1356
(errcode (ERRCODE_DUPLICATE_OBJECT ),
1357
- errmsg ("sysid %d is already assigned" , sysid )));
1357
+ errmsg ("group ID %d is already assigned" , sysid )));
1358
1358
1359
1359
/* If no sysid given, use max existing id + 1 */
1360
1360
if (!havesysid )
You can’t perform that action at this time.
0 commit comments