mirror of
https://github.com/postgres/postgres.git
synced 2026-02-18 01:59:53 -05:00
Fix thinko in plpython error message
This commit is contained in:
parent
1d74e16dd5
commit
9dcfb2bca5
1 changed files with 1 additions and 1 deletions
|
|
@ -1018,7 +1018,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;
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue