From 03905a584e6740d2880bdacc31a4c653a63ff4ba Mon Sep 17 00:00:00 2001 From: steve-chavez Date: Thu, 1 Aug 2019 13:26:27 -0500 Subject: [PATCH] Fix #224, remove STRICT from example rpc --- api.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/api.rst b/api.rst index 728e485af..074135b58 100644 --- a/api.rst +++ b/api.rst @@ -623,7 +623,7 @@ For instance, assume we have created this function in the database. CREATE FUNCTION add_them(a integer, b integer) RETURNS integer AS $$ SELECT a + b; - $$ LANGUAGE SQL IMMUTABLE STRICT; + $$ LANGUAGE SQL IMMUTABLE; The client can call it by posting an object like