diff options
author | Tom Lane <tgl@sss.pgh.pa.us> | 2005-02-24 01:11:40 +0000 |
---|---|---|
committer | Tom Lane <tgl@sss.pgh.pa.us> | 2005-02-24 01:11:40 +0000 |
commit | 41994145d44ca3a10015dfcb5be856834e968d1a (patch) | |
tree | f0d172c7c9df2f25e6787c869d7e25bcf59d7208 | |
parent | 406a942820d260382c54e69c6cdf911af5836547 (diff) | |
download | postgresql-41994145d44ca3a10015dfcb5be856834e968d1a.tar.gz postgresql-41994145d44ca3a10015dfcb5be856834e968d1a.zip |
My patch this morning was overly hasty; revert code to original state.
-rw-r--r-- | src/pl/plpgsql/src/pl_exec.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/pl/plpgsql/src/pl_exec.c b/src/pl/plpgsql/src/pl_exec.c index f49ad0a6b05..079bce21c2b 100644 --- a/src/pl/plpgsql/src/pl_exec.c +++ b/src/pl/plpgsql/src/pl_exec.c @@ -3,7 +3,7 @@ * procedural language * * IDENTIFICATION - * $PostgreSQL: pgsql/src/pl/plpgsql/src/pl_exec.c,v 1.131 2005/02/23 16:23:07 tgl Exp $ + * $PostgreSQL: pgsql/src/pl/plpgsql/src/pl_exec.c,v 1.132 2005/02/24 01:11:40 tgl Exp $ * * This software is copyrighted by Jan Wieck - Hamburg. * @@ -702,7 +702,7 @@ plpgsql_exec_error_callback(void *arg) */ errcontext("PL/pgSQL function \"%s\" %s", estate->err_func->fn_name, - estate->err_text); + gettext(estate->err_text)); } else errcontext("PL/pgSQL function \"%s\"", |