diff options
author | Peter Eisentraut <peter_e@gmx.net> | 2003-09-26 15:27:37 +0000 |
---|---|---|
committer | Peter Eisentraut <peter_e@gmx.net> | 2003-09-26 15:27:37 +0000 |
commit | d84b6ef56be10d0c24859d38fcc4fa99cb1f43e2 (patch) | |
tree | d6cbea40e706840e6070055bb35ec3bd1964d112 /src/backend/commands/opclasscmds.c | |
parent | 98150f108f2343bfc8510ba7a2c88a43ae4a32af (diff) | |
download | postgresql-d84b6ef56be10d0c24859d38fcc4fa99cb1f43e2.tar.gz postgresql-d84b6ef56be10d0c24859d38fcc4fa99cb1f43e2.zip |
Various message fixes, among those fixes for the previous round of fixes
Diffstat (limited to 'src/backend/commands/opclasscmds.c')
-rw-r--r-- | src/backend/commands/opclasscmds.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/backend/commands/opclasscmds.c b/src/backend/commands/opclasscmds.c index abccad1078f..c183d7ad5bc 100644 --- a/src/backend/commands/opclasscmds.c +++ b/src/backend/commands/opclasscmds.c @@ -9,7 +9,7 @@ * * * IDENTIFICATION - * $Header: /cvsroot/pgsql/src/backend/commands/opclasscmds.c,v 1.20 2003/09/25 06:57:58 petere Exp $ + * $Header: /cvsroot/pgsql/src/backend/commands/opclasscmds.c,v 1.21 2003/09/26 15:27:31 petere Exp $ * *------------------------------------------------------------------------- */ @@ -284,10 +284,10 @@ DefineOpClass(CreateOpClassStmt *stmt) if (opclass->opcintype == typeoid && opclass->opcdefault) ereport(ERROR, (errcode(ERRCODE_DUPLICATE_OBJECT), - errmsg("could not make class \"%s\" be default for type %s", + errmsg("could not make operator class \"%s\" be default for type %s", opcname, TypeNameToString(stmt->datatype)), - errdetail("Class \"%s\" already is the default.", + errdetail("Operator class \"%s\" already is the default.", NameStr(opclass->opcname)))); } |