diff options
author | Neil Conway <neilc@samurai.com> | 2006-02-28 20:56:14 +0000 |
---|---|---|
committer | Neil Conway <neilc@samurai.com> | 2006-02-28 20:56:14 +0000 |
commit | 2b8afe6193c6e64d956c400397c421be4065acaa (patch) | |
tree | 2aa7c21efd3aae3252ec65679f6deaca1fb6bf38 /src/pl/plpython/plpython.c | |
parent | 87daae1143520309da299b78a8e7a68f141a268f (diff) |
Tweak the error message emitted when a void-returning PL/Python function
does not return None, per suggestion from Tom.
Diffstat (limited to 'src/pl/plpython/plpython.c')
-rw-r--r-- | src/pl/plpython/plpython.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/pl/plpython/plpython.c b/src/pl/plpython/plpython.c index 14c805a29ef..cea843f343a 100644 --- a/src/pl/plpython/plpython.c +++ b/src/pl/plpython/plpython.c @@ -29,7 +29,7 @@ * MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS. * * IDENTIFICATION - * $PostgreSQL: pgsql/src/pl/plpython/plpython.c,v 1.72 2006/02/28 20:03:52 neilc Exp $ + * $PostgreSQL: pgsql/src/pl/plpython/plpython.c,v 1.73 2006/02/28 20:56:14 neilc Exp $ * ********************************************************************* */ @@ -769,8 +769,8 @@ PLy_function_handler(FunctionCallInfo fcinfo, PLyProcedure * proc) if (plrv != Py_None) ereport(ERROR, (errcode(ERRCODE_DATATYPE_MISMATCH), - errmsg("unexpected return value from plpython procedure"), - errdetail("void-returning functions must return \"None\""))); + errmsg("invalid return value from plpython function"), + errdetail("Functions returning type \"void\" must return \"None\"."))); fcinfo->isnull = false; rv = (Datum) 0; |