Make error message more verbose, in hopes of avoiding misunderstandings
such as bug #1293.
This commit is contained in:
parent
0636d55843
commit
02ca529dd8
@ -8,7 +8,7 @@
|
|||||||
*
|
*
|
||||||
*
|
*
|
||||||
* IDENTIFICATION
|
* IDENTIFICATION
|
||||||
* $PostgreSQL: pgsql/src/backend/parser/parse_target.c,v 1.126 2004/09/30 00:24:21 tgl Exp $
|
* $PostgreSQL: pgsql/src/backend/parser/parse_target.c,v 1.127 2004/10/25 03:08:29 tgl Exp $
|
||||||
*
|
*
|
||||||
*-------------------------------------------------------------------------
|
*-------------------------------------------------------------------------
|
||||||
*/
|
*/
|
||||||
@ -486,15 +486,17 @@ transformAssignmentIndirection(ParseState *pstate,
|
|||||||
if (!typrelid)
|
if (!typrelid)
|
||||||
ereport(ERROR,
|
ereport(ERROR,
|
||||||
(errcode(ERRCODE_DATATYPE_MISMATCH),
|
(errcode(ERRCODE_DATATYPE_MISMATCH),
|
||||||
errmsg("cannot assign to a column of type %s because it is not a composite type",
|
errmsg("cannot assign to field \"%s\" of column \"%s\" because its type %s is not a composite type",
|
||||||
|
strVal(n), targetName,
|
||||||
format_type_be(targetTypeId))));
|
format_type_be(targetTypeId))));
|
||||||
|
|
||||||
attnum = get_attnum(typrelid, strVal(n));
|
attnum = get_attnum(typrelid, strVal(n));
|
||||||
if (attnum == InvalidAttrNumber)
|
if (attnum == InvalidAttrNumber)
|
||||||
ereport(ERROR,
|
ereport(ERROR,
|
||||||
(errcode(ERRCODE_UNDEFINED_COLUMN),
|
(errcode(ERRCODE_UNDEFINED_COLUMN),
|
||||||
errmsg("column \"%s\" not found in data type %s",
|
errmsg("cannot assign to field \"%s\" of column \"%s\" because there is no such column in data type %s",
|
||||||
strVal(n), format_type_be(targetTypeId))));
|
strVal(n), targetName,
|
||||||
|
format_type_be(targetTypeId))));
|
||||||
if (attnum < 0)
|
if (attnum < 0)
|
||||||
ereport(ERROR,
|
ereport(ERROR,
|
||||||
(errcode(ERRCODE_UNDEFINED_COLUMN),
|
(errcode(ERRCODE_UNDEFINED_COLUMN),
|
||||||
|
Loading…
x
Reference in New Issue
Block a user