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

Commit ae47252

Browse files
committed
Fix an Inccorect Error Message...
Submitted by: Dan McGuirk <mcguirk@indirect.com>
1 parent dfca092 commit ae47252

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/backend/parser/catalog_utils.c

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
*
77
*
88
* IDENTIFICATION
9-
* $Header: /cvsroot/pgsql/src/backend/parser/Attic/catalog_utils.c,v 1.2 1996/07/19 07:24:08 scrappy Exp $
9+
* $Header: /cvsroot/pgsql/src/backend/parser/Attic/catalog_utils.c,v 1.3 1996/08/09 19:06:59 scrappy Exp $
1010
*
1111
*-------------------------------------------------------------------------
1212
*/
@@ -1440,7 +1440,7 @@ op_error(char *op, int arg1, int arg2)
14401440
op, tname(tp1),tname(tp2));
14411441
elog(NOTICE, "You will either have to retype this query using an");
14421442
elog(NOTICE, "explicit cast, or you will have to define the operator");
1443-
elog(WARN, "%s for %s and %s using DEFINE OPERATOR",
1443+
elog(WARN, "%s for %s and %s using CREATE OPERATOR",
14441444
op, tname(tp1),tname(tp2));
14451445
}
14461446

0 commit comments

Comments
 (0)