Skip to content

Commit 753e62e

Browse files
committed
Fix thinko in plpython error message
1 parent a590256 commit 753e62e

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/pl/plpython/plpy_exec.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -88,7 +88,7 @@ PLy_exec_function(FunctionCallInfo fcinfo, PLyProcedure *proc)
8888
ereport(ERROR,
8989
(errcode(ERRCODE_FEATURE_NOT_SUPPORTED),
9090
errmsg("unsupported set function return mode"),
91-
errdetail("PL/Python set-returning functions only support returning only value per call.")));
91+
errdetail("PL/Python set-returning functions only support returning one value per call.")));
9292
}
9393
rsi->returnMode = SFRM_ValuePerCall;
9494

0 commit comments

Comments
 (0)