Index: doc/src/sgml/ref/create_function.sgml =================================================================== RCS file: /cvsroot/pgsql-server/doc/src/sgml/ref/create_function.sgml,v retrieving revision 1.56 diff -u -c -r1.56 create_function.sgml *** doc/src/sgml/ref/create_function.sgml 16 May 2004 23:22:07 -0000 1.56 --- doc/src/sgml/ref/create_function.sgml 24 Jun 2004 22:02:35 -0000 *************** *** 19,25 **** ! CREATE [ OR REPLACE ] FUNCTION name ( [ argtype [, ...] ] ) RETURNS rettype { LANGUAGE langname | IMMUTABLE | STABLE | VOLATILE --- 19,25 ---- ! CREATE [ OR REPLACE ] FUNCTION name ( [ [argname] argtype [, ...] ] ) RETURNS rettype { LANGUAGE langname | IMMUTABLE | STABLE | VOLATILE *************** *** 84,89 **** --- 84,101 ---- The name of a function to create. + + + + + + argname + + + + The name of an argument. Some languages (currently only PL/pgSQL) lets + you use the name in the function body, for other languages the + argument name is just extra documentation.