aboutsummaryrefslogtreecommitdiff
path: root/src/backend/parser/parse_clause.c
diff options
context:
space:
mode:
authorPeter Eisentraut <peter_e@gmx.net>2003-09-26 15:27:37 +0000
committerPeter Eisentraut <peter_e@gmx.net>2003-09-26 15:27:37 +0000
commitd84b6ef56be10d0c24859d38fcc4fa99cb1f43e2 (patch)
treed6cbea40e706840e6070055bb35ec3bd1964d112 /src/backend/parser/parse_clause.c
parent98150f108f2343bfc8510ba7a2c88a43ae4a32af (diff)
downloadpostgresql-d84b6ef56be10d0c24859d38fcc4fa99cb1f43e2.tar.gz
postgresql-d84b6ef56be10d0c24859d38fcc4fa99cb1f43e2.zip
Various message fixes, among those fixes for the previous round of fixes
Diffstat (limited to 'src/backend/parser/parse_clause.c')
-rw-r--r--src/backend/parser/parse_clause.c6
1 files changed, 3 insertions, 3 deletions
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);