summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAlvaro Herrera2015-01-06 18:16:29 +0000
committerAlvaro Herrera2015-01-06 18:16:29 +0000
commit97f8a240785ec098420581e5e6a0ff2bd489a0ad (patch)
tree30eed6cebc822683d1bf1a61745b59b4945c75f3
parentf57802a463826882fa08dd796272b1ad8dc2ff11 (diff)
Fix thinko in plpython error message
-rw-r--r--src/pl/plpython/plpython.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/pl/plpython/plpython.c b/src/pl/plpython/plpython.c
index 8cf2d716f14..4541ffb54d9 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;