summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorAlvaro Herrera2015-01-06 18:16:29 +0000
committerAlvaro Herrera2015-01-06 18:16:29 +0000
commit91539c56986da740fd733765b06920cc73aaf33e (patch)
treebb001809997fe8c32b658033de49e4db1ad90d69 /src
parent29c18d919e3e45fcb0c40747636c3bc2c79253ae (diff)
Fix thinko in plpython error message
Diffstat (limited to 'src')
-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 3724e67a073..8c525c932a7 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;