From eb1c22c39d3063da3030c8bb122ff89280eaf592 Mon Sep 17 00:00:00 2001 From: Bruce Momjian Date: Sun, 26 Oct 2003 04:34:05 +0000 Subject: [PATCH] Add mention of quotes on function body to NOTES section. Oliver Elphick --- doc/src/sgml/ref/create_function.sgml | 12 +++++++++--- 1 file changed, 9 insertions(+), 3 deletions(-) diff --git a/doc/src/sgml/ref/create_function.sgml b/doc/src/sgml/ref/create_function.sgml index ec458e5197..d094e3970e 100644 --- a/doc/src/sgml/ref/create_function.sgml +++ b/doc/src/sgml/ref/create_function.sgml @@ -1,5 +1,5 @@ @@ -355,9 +355,15 @@ CREATE [ OR REPLACE ] FUNCTION name - To be able to define a function, the user must have the - USAGE privilege on the language. + Any single quotes or backslashes in the function definition must be + escaped by doubling them. + + + To be able to define a function, the user must have the + USAGE privilege on the language. + +