From: Alvaro Herrera Date: Tue, 6 Jan 2015 18:16:29 +0000 (-0300) Subject: Fix thinko in plpython error message X-Git-Tag: REL9_1_15~37 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=97f8a240785ec098420581e5e6a0ff2bd489a0ad;p=postgresql Fix thinko in plpython error message --- diff --git a/src/pl/plpython/plpython.c b/src/pl/plpython/plpython.c index 8cf2d716f1..4541ffb54d 100644 --- a/src/pl/plpython/plpython.c +++ b/src/pl/plpython/plpython.c @@ -1131,7 +1131,7 @@ PLy_function_handler(FunctionCallInfo fcinfo, PLyProcedure *proc) ereport(ERROR, (errcode(ERRCODE_FEATURE_NOT_SUPPORTED), errmsg("unsupported set function return mode"), - errdetail("PL/Python set-returning functions only support returning only value per call."))); + errdetail("PL/Python set-returning functions only support returning one value per call."))); } rsi->returnMode = SFRM_ValuePerCall;