Fix #224, remove STRICT from example rpc

This commit is contained in:
steve-chavez
2019-08-26 10:28:03 -05:00
committed by Steve Chávez
parent b07d07f17d
commit 03905a584e
+1 -1
View File
@@ -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