Commit 33d48d97 authored by Peter Eisentraut's avatar Peter Eisentraut

Fix typo in error message: tgargv -> tg_argv

parent f51c9a66
...@@ -8,7 +8,7 @@ ...@@ -8,7 +8,7 @@
* *
* *
* IDENTIFICATION * IDENTIFICATION
* $PostgreSQL: pgsql/src/pl/plpgsql/src/pl_exec.c,v 1.243 2009/06/11 14:49:14 momjian Exp $ * $PostgreSQL: pgsql/src/pl/plpgsql/src/pl_exec.c,v 1.244 2009/06/17 13:46:12 petere Exp $
* *
*------------------------------------------------------------------------- *-------------------------------------------------------------------------
*/ */
...@@ -3975,7 +3975,7 @@ exec_eval_datum(PLpgSQL_execstate *estate, ...@@ -3975,7 +3975,7 @@ exec_eval_datum(PLpgSQL_execstate *estate,
if (expectedtypeid != InvalidOid && expectedtypeid != *typeid) if (expectedtypeid != InvalidOid && expectedtypeid != *typeid)
ereport(ERROR, ereport(ERROR,
(errcode(ERRCODE_DATATYPE_MISMATCH), (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))); tgargno)));
break; break;
} }
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment