mirror of
https://github.com/postgres/postgres.git
synced 2026-04-20 22:00:13 -04:00
Add quotes to message
This commit is contained in:
parent
bc134d7a51
commit
3e96ed4c2b
1 changed files with 2 additions and 2 deletions
|
|
@ -8,7 +8,7 @@
|
|||
*
|
||||
*
|
||||
* IDENTIFICATION
|
||||
* $PostgreSQL: pgsql/src/pl/plpgsql/src/pl_exec.c,v 1.234 2009/02/18 11:33:04 petere Exp $
|
||||
* $PostgreSQL: pgsql/src/pl/plpgsql/src/pl_exec.c,v 1.235 2009/02/23 10:03:22 petere Exp $
|
||||
*
|
||||
*-------------------------------------------------------------------------
|
||||
*/
|
||||
|
|
@ -5144,7 +5144,7 @@ validate_tupdesc_compat(TupleDesc expected, TupleDesc returned, const char *msg)
|
|||
(errcode(ERRCODE_DATATYPE_MISMATCH),
|
||||
errmsg("%s", _(msg)),
|
||||
errdetail("Returned type %s does not match expected type "
|
||||
"%s in column %s.",
|
||||
"%s in column \"%s\".",
|
||||
OidIsValid(returned->attrs[i]->atttypid) ?
|
||||
format_type_be(returned->attrs[i]->atttypid) :
|
||||
_(dropped_column_type),
|
||||
|
|
|
|||
Loading…
Reference in a new issue