diff options
author | Bruce Momjian <bruce@momjian.us> | 1998-03-30 17:28:21 +0000 |
---|---|---|
committer | Bruce Momjian <bruce@momjian.us> | 1998-03-30 17:28:21 +0000 |
commit | 57b5966405fb6e237676acef55973c064ac65a2a (patch) | |
tree | d2397c1d3308e56cd33c5f2f607e26129106ed4a /src/man/sql.l | |
parent | 31c36102cab914f6664ee2db20c7732aeb51a02b (diff) | |
download | postgresql-57b5966405fb6e237676acef55973c064ac65a2a.tar.gz postgresql-57b5966405fb6e237676acef55973c064ac65a2a.zip |
The following uuencoded, gzip'd file will ...
1. Remove the char2, char4, char8 and char16 types from postgresql
2. Change references of char16 to name in the regression tests.
3. Rename the char16.sql regression test to name.sql. 4. Modify
the regression test scripts and outputs to match up.
Might require new regression.{SYSTEM} files...
Darren King
Diffstat (limited to 'src/man/sql.l')
-rw-r--r-- | src/man/sql.l | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/man/sql.l b/src/man/sql.l index de2e11709d3..afe8d59bb23 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.8 1998/01/11 22:18:00 momjian Exp $ +.\" $Header: /cvsroot/pgsql/src/man/Attic/sql.l,v 1.9 1998/03/30 17:26:00 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' |