From: Peter Eisentraut Date: Wed, 17 Jun 2009 13:46:12 +0000 (+0000) Subject: Fix typo in error message: tgargv -> tg_argv X-Git-Url: http://waps.l3s.uni-hannover.de/gitweb/?a=commitdiff_plain;h=426f34f296e186259ee982bda3c2b83a909235c2;p=users%2Fsimon%2Fpostgres.git Fix typo in error message: tgargv -> tg_argv --- diff --git a/src/pl/plpgsql/src/pl_exec.c b/src/pl/plpgsql/src/pl_exec.c index 3af3aeebb8..6158d122c0 100644 --- a/src/pl/plpgsql/src/pl_exec.c +++ b/src/pl/plpgsql/src/pl_exec.c @@ -3975,7 +3975,7 @@ exec_eval_datum(PLpgSQL_execstate *estate, if (expectedtypeid != InvalidOid && expectedtypeid != *typeid) ereport(ERROR, (errcode(ERRCODE_DATATYPE_MISMATCH), - errmsg("type of tgargv[%d] does not match that when preparing the plan", + errmsg("type of tg_argv[%d] does not match that when preparing the plan", tgargno))); break; }