Skip to content
Snippets Groups Projects
Commit 4a3613f9 authored by Tom Lane's avatar Tom Lane
Browse files

Update CREATE FUNCTION documentation about argument names.

The 9.2 patch that added argument name support in SQL-language functions
missed updating a parenthetical comment about that in the CREATE FUNCTION
reference page.  Noted by Erwin Brandstetter.
parent 4ebbbf3c
No related branches found
No related tags found
No related merge requests found
...@@ -134,8 +134,9 @@ CREATE [ OR REPLACE ] FUNCTION ...@@ -134,8 +134,9 @@ CREATE [ OR REPLACE ] FUNCTION
<listitem> <listitem>
<para> <para>
The name of an argument. Some languages (currently only PL/pgSQL) let The name of an argument. Some languages (currently only SQL and
you use the name in the function body. For other languages the 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 name of an input argument is just extra documentation, so far as
the function itself is concerned; but you can use input argument names the function itself is concerned; but you can use input argument names
when calling a function to improve readability (see <xref when calling a function to improve readability (see <xref
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment