summaryrefslogtreecommitdiff
path: root/src/pl
diff options
context:
space:
mode:
authorAlvaro Herrera2015-01-06 18:16:29 +0000
committerAlvaro Herrera2015-01-06 18:16:29 +0000
commit0cc6cef5a6e9f3af98c793d70173ac9e048009be (patch)
treef87b9a3b4115469089901ebed1f374241b63a7bb /src/pl
parent0e52f5b507f4e27540291efa8dc25476fec42bed (diff)
Fix thinko in plpython error message
Diffstat (limited to 'src/pl')
-rw-r--r--src/pl/plpython/plpy_exec.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/pl/plpython/plpy_exec.c b/src/pl/plpython/plpy_exec.c
index b6eb6f1f951..5183f9c9181 100644
--- a/src/pl/plpython/plpy_exec.c
+++ b/src/pl/plpython/plpy_exec.c
@@ -89,7 +89,7 @@ PLy_exec_function(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;