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/parser | |
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/parser')
-rw-r--r-- | src/backend/parser/analyze.c | 4 | ||||
-rw-r--r-- | src/backend/parser/gram.y | 6 | ||||
-rw-r--r-- | src/backend/parser/parse_clause.c | 6 | ||||
-rw-r--r-- | src/backend/parser/parse_expr.c | 8 |
4 files changed, 12 insertions, 12 deletions
diff --git a/src/backend/parser/analyze.c b/src/backend/parser/analyze.c index 37f543c1eaf..4d1cd28f123 100644 --- a/src/backend/parser/analyze.c +++ b/src/backend/parser/analyze.c @@ -6,7 +6,7 @@ * Portions Copyright (c) 1996-2003, PostgreSQL Global Development Group * Portions Copyright (c) 1994, Regents of the University of California * - * $Header: /cvsroot/pgsql/src/backend/parser/analyze.c,v 1.288 2003/09/25 06:58:00 petere Exp $ + * $Header: /cvsroot/pgsql/src/backend/parser/analyze.c,v 1.289 2003/09/26 15:27:32 petere Exp $ * *------------------------------------------------------------------------- */ @@ -3029,7 +3029,7 @@ transformConstraintAttrs(List *constraintList) else if (!((FkConstraint *) lastprimarynode)->deferrable) ereport(ERROR, (errcode(ERRCODE_SYNTAX_ERROR), - errmsg("INITIALLY DEFERRED constraint must be DEFERRABLE"))); + errmsg("constraint declared INITIALLY DEFERRED must be DEFERRABLE"))); break; case CONSTR_ATTR_IMMEDIATE: if (lastprimarynode == NULL || diff --git a/src/backend/parser/gram.y b/src/backend/parser/gram.y index 914b7150401..9e72f3bcd3f 100644 --- a/src/backend/parser/gram.y +++ b/src/backend/parser/gram.y @@ -11,7 +11,7 @@ * * * IDENTIFICATION - * $Header: /cvsroot/pgsql/src/backend/parser/gram.y,v 2.434 2003/09/25 06:58:00 petere Exp $ + * $Header: /cvsroot/pgsql/src/backend/parser/gram.y,v 2.435 2003/09/26 15:27:32 petere Exp $ * * HISTORY * AUTHOR DATE MAJOR EVENT @@ -2190,7 +2190,7 @@ ConstraintAttributeSpec: if ($1 == 0 && $2 != 0) ereport(ERROR, (errcode(ERRCODE_SYNTAX_ERROR), - errmsg("INITIALLY DEFERRED constraint must be DEFERRABLE"))); + errmsg("constraint declared INITIALLY DEFERRED must be DEFERRABLE"))); $$ = $1 | $2; } | ConstraintTimeSpec @@ -2205,7 +2205,7 @@ ConstraintAttributeSpec: if ($2 == 0 && $1 != 0) ereport(ERROR, (errcode(ERRCODE_SYNTAX_ERROR), - errmsg("INITIALLY DEFERRED constraint must be DEFERRABLE"))); + errmsg("constraint declared INITIALLY DEFERRED must be DEFERRABLE"))); $$ = $1 | $2; } | /*EMPTY*/ diff --git a/src/backend/parser/parse_clause.c b/src/backend/parser/parse_clause.c index ac5543735e9..20937ad2b69 100644 --- a/src/backend/parser/parse_clause.c +++ b/src/backend/parser/parse_clause.c @@ -8,7 +8,7 @@ * * * IDENTIFICATION - * $Header: /cvsroot/pgsql/src/backend/parser/parse_clause.c,v 1.123 2003/09/25 06:58:01 petere Exp $ + * $Header: /cvsroot/pgsql/src/backend/parser/parse_clause.c,v 1.124 2003/09/26 15:27:35 petere Exp $ * *------------------------------------------------------------------------- */ @@ -749,7 +749,7 @@ transformFromClauseItem(ParseState *pstate, Node *n, List **containedRels) if (l_index < 0) ereport(ERROR, (errcode(ERRCODE_UNDEFINED_COLUMN), - errmsg("column \"%s\" specified in USING clause not found in left table", + errmsg("column \"%s\" specified in USING clause does not exist in left table", u_colname))); /* Find it in right input */ @@ -772,7 +772,7 @@ transformFromClauseItem(ParseState *pstate, Node *n, List **containedRels) if (r_index < 0) ereport(ERROR, (errcode(ERRCODE_UNDEFINED_COLUMN), - errmsg("column \"%s\" specified in USING clause not found in right table", + errmsg("column \"%s\" specified in USING clause does not exist in right table", u_colname))); l_colvar = nth(l_index, l_colvars); diff --git a/src/backend/parser/parse_expr.c b/src/backend/parser/parse_expr.c index 88768b3b4e5..b5d23fadfeb 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.162 2003/09/25 06:58:01 petere Exp $ + * $Header: /cvsroot/pgsql/src/backend/parser/parse_expr.c,v 1.163 2003/09/26 15:27:35 petere Exp $ * *------------------------------------------------------------------------- */ @@ -601,17 +601,17 @@ transformExpr(ParseState *pstate, Node *expr) if (opform->oprresult != BOOLOID) ereport(ERROR, (errcode(ERRCODE_DATATYPE_MISMATCH), - errmsg("operator %s must return boolean, not type %s", + errmsg("operator %s must return type boolean, not type %s", opname, format_type_be(opform->oprresult)), - errhint("The operator of a quantified predicate subquery must return boolean."))); + errhint("The operator of a quantified predicate subquery must return type boolean."))); if (get_func_retset(opform->oprcode)) ereport(ERROR, (errcode(ERRCODE_DATATYPE_MISMATCH), errmsg("operator %s must not return a set", opname), - errhint("The operator of a quantified predicate subquery must return boolean."))); + errhint("The operator of a quantified predicate subquery must return type boolean."))); sublink->operOids = lappendo(sublink->operOids, oprid(optup)); |