diff options
author | Peter Eisentraut | 2013-06-20 02:25:13 +0000 |
---|---|---|
committer | Peter Eisentraut | 2013-06-20 02:29:34 +0000 |
commit | 73c103dfa7970ea6e83a497b6d72af6f2df566a1 (patch) | |
tree | bbe02cd9dcbb7de6336b72350580f292b04fec8a /doc/src | |
parent | de31442b8b2818e211be3e334f778746705c5ab2 (diff) |
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 286e8f0f149..f42bd489660 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 |