diff options
| author | Tom Lane <tgl@sss.pgh.pa.us> | 2003-07-28 00:09:16 +0000 |
|---|---|---|
| committer | Tom Lane <tgl@sss.pgh.pa.us> | 2003-07-28 00:09:16 +0000 |
| commit | 81b5c8a1364e7d287fb0aaac848f7f84e64b86d3 (patch) | |
| tree | 6ce59b7bf5b0cd674a2b0e906adecdc98a231ddf /src/backend/parser | |
| parent | b556e8200e55261cf41de7ce8be4b38b0a062c2b (diff) | |
A visit from the message-style police ...
Diffstat (limited to 'src/backend/parser')
| -rw-r--r-- | src/backend/parser/analyze.c | 8 | ||||
| -rw-r--r-- | src/backend/parser/parse_coerce.c | 14 | ||||
| -rw-r--r-- | src/backend/parser/parse_expr.c | 8 | ||||
| -rw-r--r-- | src/backend/parser/parse_func.c | 4 | ||||
| -rw-r--r-- | src/backend/parser/parse_oper.c | 10 | ||||
| -rw-r--r-- | src/backend/parser/parse_target.c | 4 |
6 files changed, 24 insertions, 24 deletions
diff --git a/src/backend/parser/analyze.c b/src/backend/parser/analyze.c index db8b7cc968d..1ba1bf51461 100644 --- a/src/backend/parser/analyze.c +++ b/src/backend/parser/analyze.c @@ -6,7 +6,7 @@ * Portions Copyright (c) 1996-2002, PostgreSQL Global Development Group * Portions Copyright (c) 1994, Regents of the University of California * - * $Header: /cvsroot/pgsql/src/backend/parser/analyze.c,v 1.281 2003/07/19 20:20:52 tgl Exp $ + * $Header: /cvsroot/pgsql/src/backend/parser/analyze.c,v 1.282 2003/07/28 00:09:15 tgl Exp $ * *------------------------------------------------------------------------- */ @@ -1151,7 +1151,7 @@ transformTableConstraint(ParseState *pstate, CreateStmtContext *cxt, case CONSTR_ATTR_NOT_DEFERRABLE: case CONSTR_ATTR_DEFERRED: case CONSTR_ATTR_IMMEDIATE: - elog(ERROR, "illegal context for constraint type %d", + elog(ERROR, "invalid context for constraint type %d", constraint->contype); break; @@ -2756,11 +2756,11 @@ transformExecuteStmt(ParseState *pstate, ExecuteStmt *stmt) if (pstate->p_hasSubLinks) ereport(ERROR, (errcode(ERRCODE_FEATURE_NOT_SUPPORTED), - errmsg("cannot use sub-selects in EXECUTE parameters"))); + errmsg("cannot use sub-select in EXECUTE parameter"))); if (pstate->p_hasAggs) ereport(ERROR, (errcode(ERRCODE_GROUPING_ERROR), - errmsg("cannot use aggregates in EXECUTE parameters"))); + errmsg("cannot use aggregate in EXECUTE parameter"))); given_type_id = exprType(expr); expected_type_id = lfirsto(paramtypes); diff --git a/src/backend/parser/parse_coerce.c b/src/backend/parser/parse_coerce.c index 680802df592..351bc00c70f 100644 --- a/src/backend/parser/parse_coerce.c +++ b/src/backend/parser/parse_coerce.c @@ -8,7 +8,7 @@ * * * IDENTIFICATION - * $Header: /cvsroot/pgsql/src/backend/parser/parse_coerce.c,v 2.105 2003/07/19 20:20:52 tgl Exp $ + * $Header: /cvsroot/pgsql/src/backend/parser/parse_coerce.c,v 2.106 2003/07/28 00:09:15 tgl Exp $ * *------------------------------------------------------------------------- */ @@ -726,7 +726,7 @@ coerce_to_common_type(ParseState *pstate, Node *node, ereport(ERROR, (errcode(ERRCODE_CANNOT_COERCE), /* translator: first %s is name of a SQL construct, eg CASE */ - errmsg("%s unable to convert type %s to %s", + errmsg("%s could not convert type %s to %s", context, format_type_be(inputTypeId), format_type_be(targetTypeId)))); @@ -945,7 +945,7 @@ enforce_generic_type_consistency(Oid *actual_arg_types, /* Only way to get here is if all the generic args are UNKNOWN */ ereport(ERROR, (errcode(ERRCODE_DATATYPE_MISMATCH), - errmsg("cannot determine ANYARRAY/ANYELEMENT type because input is UNKNOWN"))); + errmsg("could not determine ANYARRAY/ANYELEMENT type because input is UNKNOWN"))); } /* @@ -972,7 +972,7 @@ enforce_generic_type_consistency(Oid *actual_arg_types, if (!OidIsValid(array_typeid)) ereport(ERROR, (errcode(ERRCODE_UNDEFINED_OBJECT), - errmsg("cannot find array type for datatype %s", + errmsg("could not find array type for datatype %s", format_type_be(elem_typeid)))); } declared_arg_types[j] = array_typeid; @@ -989,7 +989,7 @@ enforce_generic_type_consistency(Oid *actual_arg_types, if (!OidIsValid(array_typeid)) ereport(ERROR, (errcode(ERRCODE_UNDEFINED_OBJECT), - errmsg("cannot find array type for datatype %s", + errmsg("could not find array type for datatype %s", format_type_be(elem_typeid)))); } return array_typeid; @@ -1043,7 +1043,7 @@ resolve_generic_type(Oid declared_type, if (!OidIsValid(array_typeid)) ereport(ERROR, (errcode(ERRCODE_UNDEFINED_OBJECT), - errmsg("cannot find array type for datatype %s", + errmsg("could not find array type for datatype %s", format_type_be(context_actual_type)))); return array_typeid; } @@ -1075,7 +1075,7 @@ resolve_generic_type(Oid declared_type, } /* If we get here, declared_type is polymorphic and context isn't */ /* NB: this is a calling-code logic error, not a user error */ - elog(ERROR, "cannot determine ANYARRAY/ANYELEMENT type because context isn't polymorphic"); + elog(ERROR, "could not determine ANYARRAY/ANYELEMENT type because context isn't polymorphic"); return InvalidOid; /* keep compiler quiet */ } diff --git a/src/backend/parser/parse_expr.c b/src/backend/parser/parse_expr.c index aad725fdd61..eb24c1b615e 100644 --- a/src/backend/parser/parse_expr.c +++ b/src/backend/parser/parse_expr.c @@ -8,7 +8,7 @@ * * * IDENTIFICATION - * $Header: /cvsroot/pgsql/src/backend/parser/parse_expr.c,v 1.157 2003/07/19 20:20:52 tgl Exp $ + * $Header: /cvsroot/pgsql/src/backend/parser/parse_expr.c,v 1.158 2003/07/28 00:09:15 tgl Exp $ * *------------------------------------------------------------------------- */ @@ -785,7 +785,7 @@ transformExpr(ParseState *pstate, Node *expr) if (!OidIsValid(element_type)) ereport(ERROR, (errcode(ERRCODE_UNDEFINED_OBJECT), - errmsg("cannot find array type for datatype %s", + errmsg("could not find array type for datatype %s", format_type_be(array_type)))); /* @@ -1252,7 +1252,7 @@ exprType(Node *expr) if (!OidIsValid(type)) ereport(ERROR, (errcode(ERRCODE_UNDEFINED_OBJECT), - errmsg("cannot find array type for datatype %s", + errmsg("could not find array type for datatype %s", format_type_be(tent->resdom->restype)))); } } @@ -1289,7 +1289,7 @@ exprType(Node *expr) if (!OidIsValid(type)) ereport(ERROR, (errcode(ERRCODE_UNDEFINED_OBJECT), - errmsg("cannot find array type for datatype %s", + errmsg("could not find array type for datatype %s", format_type_be(tent->resdom->restype)))); } } diff --git a/src/backend/parser/parse_func.c b/src/backend/parser/parse_func.c index b2ae0cc9271..40197394501 100644 --- a/src/backend/parser/parse_func.c +++ b/src/backend/parser/parse_func.c @@ -8,7 +8,7 @@ * * * IDENTIFICATION - * $Header: /cvsroot/pgsql/src/backend/parser/parse_func.c,v 1.156 2003/07/20 21:56:34 tgl Exp $ + * $Header: /cvsroot/pgsql/src/backend/parser/parse_func.c,v 1.157 2003/07/28 00:09:15 tgl Exp $ * *------------------------------------------------------------------------- */ @@ -311,7 +311,7 @@ ParseFuncOrColumn(ParseState *pstate, List *funcname, List *fargs, errmsg("function %s is not unique", func_signature_string(funcname, nargs, actual_arg_types)), - errhint("Unable to choose a best candidate function. " + errhint("Could not choose a best candidate function. " "You may need to add explicit typecasts."))); else ereport(ERROR, diff --git a/src/backend/parser/parse_oper.c b/src/backend/parser/parse_oper.c index 8ecc11a6618..68225aae0a3 100644 --- a/src/backend/parser/parse_oper.c +++ b/src/backend/parser/parse_oper.c @@ -8,7 +8,7 @@ * * * IDENTIFICATION - * $Header: /cvsroot/pgsql/src/backend/parser/parse_oper.c,v 1.70 2003/07/18 23:20:32 tgl Exp $ + * $Header: /cvsroot/pgsql/src/backend/parser/parse_oper.c,v 1.71 2003/07/28 00:09:15 tgl Exp $ * *------------------------------------------------------------------------- */ @@ -184,7 +184,7 @@ equality_oper(Oid argtype, bool noError) if (!noError) ereport(ERROR, (errcode(ERRCODE_UNDEFINED_FUNCTION), - errmsg("unable to identify an equality operator for type %s", + errmsg("could not identify an equality operator for type %s", format_type_be(argtype)))); return NULL; } @@ -247,7 +247,7 @@ ordering_oper(Oid argtype, bool noError) if (!noError) ereport(ERROR, (errcode(ERRCODE_UNDEFINED_FUNCTION), - errmsg("unable to identify an ordering operator for type %s", + errmsg("could not identify an ordering operator for type %s", format_type_be(argtype)), errhint("Use an explicit ordering operator or modify the query."))); return NULL; @@ -689,7 +689,7 @@ op_error(List *op, char oprkind, Oid arg1, Oid arg2, FuncDetailCode fdresult) (errcode(ERRCODE_AMBIGUOUS_FUNCTION), errmsg("operator is not unique: %s", op_signature_string(op, oprkind, arg1, arg2)), - errhint("Unable to choose a best candidate operator. " + errhint("Could not choose a best candidate operator. " "You may need to add explicit typecasts."))); else ereport(ERROR, @@ -828,7 +828,7 @@ make_scalar_array_op(ParseState *pstate, List *opname, if (!OidIsValid(res_atypeId)) ereport(ERROR, (errcode(ERRCODE_UNDEFINED_OBJECT), - errmsg("unable to find datatype for array of %s", + errmsg("could not find datatype for array of %s", format_type_be(declared_arg_types[1])))); actual_arg_types[1] = atypeId; declared_arg_types[1] = res_atypeId; diff --git a/src/backend/parser/parse_target.c b/src/backend/parser/parse_target.c index 92b7c02394a..daeb56b1101 100644 --- a/src/backend/parser/parse_target.c +++ b/src/backend/parser/parse_target.c @@ -8,7 +8,7 @@ * * * IDENTIFICATION - * $Header: /cvsroot/pgsql/src/backend/parser/parse_target.c,v 1.107 2003/07/19 20:20:52 tgl Exp $ + * $Header: /cvsroot/pgsql/src/backend/parser/parse_target.c,v 1.108 2003/07/28 00:09:15 tgl Exp $ * *------------------------------------------------------------------------- */ @@ -496,7 +496,7 @@ checkInsertTargets(ParseState *pstate, List *cols, List **attrnos) if (intMember(attrno, *attrnos)) ereport(ERROR, (errcode(ERRCODE_DUPLICATE_COLUMN), - errmsg("attribute \"%s\" specified more than once in INSERT list", + errmsg("attribute \"%s\" specified more than once", name))); *attrnos = lappendi(*attrnos, attrno); } |
