|
7 | 7 | *
|
8 | 8 | *
|
9 | 9 | * IDENTIFICATION
|
10 |
| - * $Header: /cvsroot/pgsql/src/backend/parser/parse_oper.c,v 1.22 1998/12/08 06:18:57 thomas Exp $ |
| 10 | + * $Header: /cvsroot/pgsql/src/backend/parser/parse_oper.c,v 1.23 1998/12/13 23:54:40 thomas Exp $ |
11 | 11 | *
|
12 | 12 | *-------------------------------------------------------------------------
|
13 | 13 | */
|
@@ -48,8 +48,8 @@ any_ordering_op(int restype)
|
48 | 48 | order_op=oper("<",restype,restype, TRUE);
|
49 | 49 | if (!HeapTupleIsValid(order_op))
|
50 | 50 | {
|
51 |
| -elog(ERROR,"Unable tofind an ordering operator '%s' for type%s." |
52 |
| -"\n\tUse an explicit ordering operator or modify the query.", |
| 51 | +elog(ERROR,"Unable toidentify an ordering operator '%s' for type'%s'" |
| 52 | +"\n\tUse an explicit ordering operator or modify the query", |
53 | 53 | "<",typeidTypeName(restype));
|
54 | 54 | }
|
55 | 55 | order_opid=oprid(order_op);
|
@@ -513,7 +513,7 @@ oper_inexact(char *op, Oid arg1, Oid arg2, Node **ltree, Node **rtree, bool noWa
|
513 | 513 | {
|
514 | 514 | if (!noWarnings)
|
515 | 515 | {
|
516 |
| -elog(ERROR,"There is more than one possible operator '%s' for types '%s' and '%s'" |
| 516 | +elog(ERROR,"Unable to identify an operator '%s' for types '%s' and '%s'" |
517 | 517 | "\n\tYou will have to retype this query using an explicit cast",
|
518 | 518 | op,typeTypeName(typeidType(arg1)),typeTypeName(typeidType(arg2)));
|
519 | 519 | }
|
@@ -544,7 +544,7 @@ oper(char *opname, Oid ltypeId, Oid rtypeId, bool noWarnings)
|
544 | 544 | }
|
545 | 545 | elseif (!noWarnings)
|
546 | 546 | {
|
547 |
| -elog(ERROR,"Unable tofind binary operator '%s' for types %s and %s", |
| 547 | +elog(ERROR,"Unable toidentify a binary operator '%s' for types %s and %s", |
548 | 548 | opname,typeTypeName(typeidType(ltypeId)),typeTypeName(typeidType(rtypeId)));
|
549 | 549 | }
|
550 | 550 |
|
@@ -662,7 +662,7 @@ right_oper(char *op, Oid arg)
|
662 | 662 |
|
663 | 663 | if (!HeapTupleIsValid(tup))
|
664 | 664 | {
|
665 |
| -elog(ERROR,"Unable to convert right operator '%s' from type%s", |
| 665 | +elog(ERROR,"Unable to convert right operator '%s' from type'%s'", |
666 | 666 | op,typeidTypeName(arg));
|
667 | 667 | returnNULL;
|
668 | 668 | }
|
@@ -723,7 +723,7 @@ left_oper(char *op, Oid arg)
|
723 | 723 |
|
724 | 724 | if (!HeapTupleIsValid(tup))
|
725 | 725 | {
|
726 |
| -elog(ERROR,"Unable to convert left operator '%s' from type%s", |
| 726 | +elog(ERROR,"Unable to convert left operator '%s' from type'%s'", |
727 | 727 | op,typeidTypeName(arg));
|
728 | 728 | returnNULL;
|
729 | 729 | }
|
|