aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorBruce Momjian <bruce@momjian.us>1997-10-01 19:42:53 +0000
committerBruce Momjian <bruce@momjian.us>1997-10-01 19:42:53 +0000
commitf477db77050aa7736e3e298dbea54a79e5b1c4af (patch)
treef625d79758a9f3858444a6f1ae7b7b2f5d2d731b /src
parent7566949a970d72745b080eaaeab2364b72ca9e8f (diff)
downloadpostgresql-f477db77050aa7736e3e298dbea54a79e5b1c4af.tar.gz
postgresql-f477db77050aa7736e3e298dbea54a79e5b1c4af.zip
Update manuals for 6.2 release.
Diffstat (limited to 'src')
-rw-r--r--src/bin/psql/psqlHelp.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/bin/psql/psqlHelp.h b/src/bin/psql/psqlHelp.h
index 1b48a0d990c..02718ff9384 100644
--- a/src/bin/psql/psqlHelp.h
+++ b/src/bin/psql/psqlHelp.h
@@ -5,7 +5,7 @@
*
* Copyright (c) 1994, Regents of the University of California
*
- * $Id: psqlHelp.h,v 1.28 1997/10/01 19:30:59 momjian Exp $
+ * $Id: psqlHelp.h,v 1.29 1997/10/01 19:42:53 momjian Exp $
*
*-------------------------------------------------------------------------
*/
@@ -77,7 +77,7 @@ static struct _helpStruct QL_HELP[] = {
"create sequence <sequence_name>\n\t[increment <NUMBER>]\n\t[start <NUMBER>]\n\t[minvalue <NUMBER>]\n\t[maxvalue <NUMBER>]\n\t[cache <NUMBER>]\n\t[cycle];"},
{"create table",
"create a new table",
- "create table <class_name> ( <attr1> <type1> [not null] [default <value>],...)\n\t[inherits (<class_name1>,...<class_nameN>)\n\t[constraint <name> check (<test>) [,check (<test>)]\n\tarchive=<archive_mode>\n\tstore=<smgr_name>\n\tarch_store=<smgr_name>];"},
+ "create table <class_name> ( <attr1> <type1> [not null] [default <value>],...)\n\t[inherits (<class_name1>,...<class_nameN>)\n\tconstraint <name> check (<test>) [,check (<test>)]\n\tarchive=<archive_mode>\n\tstore=<smgr_name>\n\tarch_store=<smgr_name>];"},
{"create type",
"create a new user-defined base data type",
"create type <typename> (\n\tinternallength = (<number> | variable),\n\t[externallength = (<number>|variable),]\n\tinput=<input_function>, output = <output_function>\n\t[,element = <typename>][,delimiter=<character>][,default=\'<string>\']\n\t[,send = <send_function>][,receive = <receive_function>][,passedbyvalue]);"},