Read only proc tx (#844)

This commit is contained in:
Joe Nelson
2017-04-07 12:52:16 -05:00
committed by GitHub
parent 77af16c9e4
commit 56bdf59e14
5 changed files with 50 additions and 14 deletions
+1
View File
@@ -316,6 +316,7 @@ $$;
CREATE FUNCTION sayhello(name text) RETURNS text
LANGUAGE sql
IMMUTABLE
AS $_$
SELECT 'Hello, ' || $1;
$_$;