diff options
author | Bruce Momjian <bruce@momjian.us> | 1997-09-10 20:19:23 +0000 |
---|---|---|
committer | Bruce Momjian <bruce@momjian.us> | 1997-09-10 20:19:23 +0000 |
commit | b1f3f446afec7de066401c8215d88f6654a8d234 (patch) | |
tree | 89387c94c6b9decfcc88994de1b00ad2d0208615 /src/man/create_function.l | |
parent | 59f6a57e59fe8353f9edaa3703516ea67e06672b (diff) | |
download | postgresql-b1f3f446afec7de066401c8215d88f6654a8d234.tar.gz postgresql-b1f3f446afec7de066401c8215d88f6654a8d234.zip |
Cleanup.
Diffstat (limited to 'src/man/create_function.l')
-rw-r--r-- | src/man/create_function.l | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/man/create_function.l b/src/man/create_function.l index 2f33ee4d988..917d3e7cdab 100644 --- a/src/man/create_function.l +++ b/src/man/create_function.l @@ -1,13 +1,13 @@ .\" This is -*-nroff-*- .\" XXX standard disclaimer belongs here.... -.\" $Header: /cvsroot/pgsql/src/man/Attic/create_function.l,v 1.2 1996/12/11 00:27:13 momjian Exp $ +.\" $Header: /cvsroot/pgsql/src/man/Attic/create_function.l,v 1.3 1997/09/10 20:19:23 momjian Exp $ .TH "CREATE FUNCTION" SQL 11/05/95 PostgreSQL PostgreSQL .SH "NAME" create function \(em define a new function .SH "SYNOPSIS" .nf -\fBcreate function\fP function_name \fB(\fP - ([type1 {, type-n}]) +\fBcreate function\fP function_name + \fB(\fP[type1 {, type-n}]\fB)\fP \fBreturns\fP type-r \fBas\fP {'/full/path/to/objectfile' | 'sql-queries'} \fBlanguage\fP {'c' \ 'sql' \ 'internal'} @@ -284,7 +284,7 @@ The body of a SQL function following should be a list of queries separated by whitespace characters and bracketed within quotation marks. Note that quotation marks used in the queries must be escaped, by preceding them with two backslashes -(i.e. \e\e"). +(i.e. \e'). .PP Arguments to the SQL function may be referenced in the queries using a $n syntax: $1 refers to the first argument, $2 to the second, and so |