diff options
author | Peter Eisentraut <peter_e@gmx.net> | 2013-06-19 22:25:13 -0400 |
---|---|---|
committer | Peter Eisentraut <peter_e@gmx.net> | 2013-06-19 22:29:13 -0400 |
commit | 4c54e87a86d6e73aa3a3b7710fa3db33297792d4 (patch) | |
tree | 38e2781fa736a06fa284c14a34720d1795620d7d /doc/src | |
parent | 8df54b9fad9b7954b71c63b86a6c587fc6748099 (diff) | |
download | postgresql-4c54e87a86d6e73aa3a3b7710fa3db33297792d4.tar.gz postgresql-4c54e87a86d6e73aa3a3b7710fa3db33297792d4.zip |
Further update CREATE FUNCTION documentation about argument names
More languages than SQL and PL/pgSQL actually support parameter names.
Diffstat (limited to 'doc/src')
-rw-r--r-- | doc/src/sgml/ref/create_function.sgml | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/doc/src/sgml/ref/create_function.sgml b/doc/src/sgml/ref/create_function.sgml index a87b1a114c8..a679a853a99 100644 --- a/doc/src/sgml/ref/create_function.sgml +++ b/doc/src/sgml/ref/create_function.sgml @@ -134,8 +134,7 @@ CREATE [ OR REPLACE ] FUNCTION <listitem> <para> - The name of an argument. Some languages (currently only SQL and - PL/pgSQL) + The name of an argument. Some languages (including SQL and PL/pgSQL) let you use the name in the function body. For other languages the name of an input argument is just extra documentation, so far as the function itself is concerned; but you can use input argument names |