aboutsummaryrefslogtreecommitdiff
path: root/doc/src/sgml/ref/create_function.sgml
diff options
context:
space:
mode:
authorRobert Haas <rhaas@postgresql.org>2012-02-15 10:45:08 -0500
committerRobert Haas <rhaas@postgresql.org>2012-02-15 10:45:08 -0500
commit73a4b994a69661964b1ff45b746f1ca26f70194c (patch)
tree19c0d771b3d551d1e44dd01decd48759fe6ee49e /doc/src/sgml/ref/create_function.sgml
parentd845fd684a3a386400a42c83c209e70095cadd55 (diff)
downloadpostgresql-73a4b994a69661964b1ff45b746f1ca26f70194c.tar.gz
postgresql-73a4b994a69661964b1ff45b746f1ca26f70194c.zip
Make CREATE/ALTER FUNCTION support NOT LEAKPROOF.
Because it isn't good to be able to turn things on, and not off again.
Diffstat (limited to 'doc/src/sgml/ref/create_function.sgml')
-rw-r--r--doc/src/sgml/ref/create_function.sgml2
1 files changed, 1 insertions, 1 deletions
diff --git a/doc/src/sgml/ref/create_function.sgml b/doc/src/sgml/ref/create_function.sgml
index 7df66ab0e08..4336e4b2182 100644
--- a/doc/src/sgml/ref/create_function.sgml
+++ b/doc/src/sgml/ref/create_function.sgml
@@ -26,7 +26,7 @@ CREATE [ OR REPLACE ] FUNCTION
| RETURNS TABLE ( <replaceable class="parameter">column_name</replaceable> <replaceable class="parameter">column_type</replaceable> [, ...] ) ]
{ LANGUAGE <replaceable class="parameter">lang_name</replaceable>
| WINDOW
- | IMMUTABLE | STABLE | VOLATILE | LEAKPROOF
+ | IMMUTABLE | STABLE | VOLATILE | [ NOT ] LEAKPROOF
| CALLED ON NULL INPUT | RETURNS NULL ON NULL INPUT | STRICT
| [ EXTERNAL ] SECURITY INVOKER | [ EXTERNAL ] SECURITY DEFINER
| COST <replaceable class="parameter">execution_cost</replaceable>