diff options
author | Bruce Momjian <bruce@momjian.us> | 1999-05-10 00:46:32 +0000 |
---|---|---|
committer | Bruce Momjian <bruce@momjian.us> | 1999-05-10 00:46:32 +0000 |
commit | 4853495e033245bbfc1d212ba8f2286008873f64 (patch) | |
tree | 230beedec9848a1f462adbdf0dd1877c5d304fd5 /src/backend/commands/indexcmds.c | |
parent | b7332c92438a518c7845a42f8892d2bd4a4f3258 (diff) | |
download | postgresql-4853495e033245bbfc1d212ba8f2286008873f64.tar.gz |
Change error messages to oids come out as %u and not %d. Change has no
real affect now.
Diffstat (limited to 'src/backend/commands/indexcmds.c')
-rw-r--r-- | src/backend/commands/indexcmds.c | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/src/backend/commands/indexcmds.c b/src/backend/commands/indexcmds.c index 6fe28daf07..5907205bd8 100644 --- a/src/backend/commands/indexcmds.c +++ b/src/backend/commands/indexcmds.c @@ -7,7 +7,7 @@ * * * IDENTIFICATION - * $Header: /cvsroot/pgsql/src/backend/commands/indexcmds.c,v 1.2 1999/03/14 05:23:12 momjian Exp $ + * $Header: /cvsroot/pgsql/src/backend/commands/indexcmds.c,v 1.3 1999/05/10 00:44:59 momjian Exp $ * *------------------------------------------------------------------------- */ @@ -164,8 +164,7 @@ DefineIndex(char *heapRelationName, if (nargs > INDEX_MAX_KEYS) { elog(ERROR, - "Too many args to function, limit of %d", - INDEX_MAX_KEYS); + "Too many args to function, limit of %d", INDEX_MAX_KEYS); } FIsetnArgs(&fInfo, nargs); @@ -514,7 +513,7 @@ NormIndexAttrs(List *attList, /* list of IndexElem's */ if (attribute->class == NULL) { elog(ERROR, - "Can't find a default operator class for type %d.", + "Can't find a default operator class for type %u.", attform->atttypid); } } |