diff options
author | Alvaro Herrera <alvherre@alvh.no-ip.org> | 2015-01-06 15:16:29 -0300 |
---|---|---|
committer | Alvaro Herrera <alvherre@alvh.no-ip.org> | 2015-01-06 15:16:29 -0300 |
commit | 753e62e17d520fa5181932cb11de70bc03d70746 (patch) | |
tree | 98d2059ffdefa7f2a213daff96e91347a74cc998 /src | |
parent | a5902566f245a17398517a8ce3d504bba8b38fdb (diff) |
Fix thinko in plpython error message
Diffstat (limited to 'src')
-rw-r--r-- | src/pl/plpython/plpy_exec.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/pl/plpython/plpy_exec.c b/src/pl/plpython/plpy_exec.c index 13deed7df6d..e5a82cf0622 100644 --- a/src/pl/plpython/plpy_exec.c +++ b/src/pl/plpython/plpy_exec.c @@ -88,7 +88,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; |