From: Bruce Momjian Date: Fri, 1 Mar 2002 19:01:22 +0000 (+0000) Subject: Oops, we didn't have single quotes around 'langname' in CREATE FUNCTION X-Git-Tag: REL7_3~2010 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=a7ac26b759c8c4b952525293d9f4c9aaa91023b2;p=postgresql Oops, we didn't have single quotes around 'langname' in CREATE FUNCTION manual page; pointed out by IRC user. --- diff --git a/doc/src/sgml/ref/create_function.sgml b/doc/src/sgml/ref/create_function.sgml index 9e919abba6..8ff50a84d9 100644 --- a/doc/src/sgml/ref/create_function.sgml +++ b/doc/src/sgml/ref/create_function.sgml @@ -1,5 +1,5 @@ @@ -18,12 +18,12 @@ $Header: /cvsroot/pgsql/doc/src/sgml/ref/create_function.sgml,v 1.31 2002/02/18 CREATE [ OR REPLACE ] FUNCTION name ( [ argtype [, ...] ] ) RETURNS rettype AS 'definition' - LANGUAGE langname + LANGUAGE 'langname' [ WITH ( attribute [, ...] ) ] CREATE [ OR REPLACE ] FUNCTION name ( [ argtype [, ...] ] ) RETURNS rettype AS 'obj_file', 'link_symbol' - LANGUAGE langname + LANGUAGE 'langname' [ WITH ( attribute [, ...] ) ]