From c83beeff068dbb8271eabc6276d4abcd842ce7a6 Mon Sep 17 00:00:00 2001 From: Bruce Momjian <bruce@momjian.us> Date: Wed, 1 Oct 1997 19:08:48 +0000 Subject: [PATCH] Update manuals for 6.2 release. --- src/bin/psql/psqlHelp.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/bin/psql/psqlHelp.h b/src/bin/psql/psqlHelp.h index abc00b33f9a..da72b0f4b9a 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.24 1997/09/08 02:33:43 momjian Exp $ + * $Id: psqlHelp.h,v 1.25 1997/10/01 19:08:48 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],... <attrN> <typeN>)\n\t[inherits (<class_name1>,...<class_nameN>)\n\tarchive=<archive_mode>\n\tstore=<smgr_name>\n\tarch_store=<smgr_name>];"}, + "create table <class_name> ( <attr1> <type1> [not null] [default <value>],... <attrN> <typeN>)\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 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]);"}, -- GitLab