summaryrefslogtreecommitdiff
path: root/src/man/sql.l
diff options
context:
space:
mode:
authorBruce Momjian1998-04-26 04:12:15 +0000
committerBruce Momjian1998-04-26 04:12:15 +0000
commit0d203b745d4fa4b78010c4cdb3c59d052a10614c (patch)
treea1413ce56d9cd59d8d611ee425374b51532fc0b4 /src/man/sql.l
parent9260d4b44078fdfafa27fd568eed37ac6b9870fa (diff)
Re-apply Darren's char2-16 removal code.
Diffstat (limited to 'src/man/sql.l')
-rw-r--r--src/man/sql.l4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/man/sql.l b/src/man/sql.l
index 73b64ee4a7..e3e4cbe808 100644
--- a/src/man/sql.l
+++ b/src/man/sql.l
@@ -1,6 +1,6 @@
.\" This is -*-nroff-*-
.\" XXX standard disclaimer belongs here....
-.\" $Header: /cvsroot/pgsql/src/man/Attic/sql.l,v 1.10 1998/04/07 18:12:57 momjian Exp $
+.\" $Header: /cvsroot/pgsql/src/man/Attic/sql.l,v 1.11 1998/04/26 04:09:51 momjian Exp $
.TH INTRODUCTION SQL 11/5/95 PostgreSQL PostgreSQL
.SH "Section 4 - SQL Commands (COMMANDS)"
.SH "General Information"
@@ -219,7 +219,7 @@ parameter is:
.fi
For example, consider the definition of a function, DEPT, as
.nf
-create function DEPT (char16)
+create function DEPT (name)
returns dept
as 'select * from
dept where name=$1'