From: Vadim B. Mikheev Date: Wed, 2 Apr 1997 04:18:26 +0000 (+0000) Subject: \h create/drop sequence. X-Git-Tag: REL6_1~390 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=2b788e0bf574bbf2047e662f4c4a9c20bc0ff986;p=postgresql \h create/drop sequence. --- diff --git a/src/bin/psql/psqlHelp.h b/src/bin/psql/psqlHelp.h index 3655245a81..bc8dfed454 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.10 1997/03/26 03:01:29 vadim Exp $ + * $Id: psqlHelp.h,v 1.11 1997/04/02 04:18:26 vadim Exp $ * *------------------------------------------------------------------------- */ @@ -52,7 +52,7 @@ static struct _helpStruct QL_HELP[] = { "copy [binary] [with oids]\n\t{to|from} {|stdin|stdout} [using delimiters ];"}, { "create", "Please more be specific:", - "\tcreate aggregate\n\tcreate database\n\tcreate function\n\tcreate index\n\tcreate operator\n\tcreate rule\n\tcreate table\n\tcreate type\n\tcreate view"}, + "\tcreate aggregate\n\tcreate database\n\tcreate function\n\tcreate index\n\tcreate operator\n\tcreate rule\n\tcreate sequence\n\tcreate table\n\tcreate type\n\tcreate view"}, { "create aggregate", "define an aggregate function", "create aggregate [as] (basetype = , \n\t[sfunc1 = , stype1 = ]\n\t[sfunc2 = , stype2 = ]\n\t[,finalfunc = ]\n\t[,initcond1 = ][,initcond2 = ]);"}, @@ -71,6 +71,9 @@ static struct _helpStruct QL_HELP[] = { { "create rule", "define a new rule", "create rule as on\n\t[select|update|delete|insert]\n\tto [where ]\n\tdo [instead] [|nothing| []];"}, + { "create sequence", + "create a new sequence number generator", + "create sequence \n\t[increment ]\n\t[start ]\n\t[minvalue ]\n\t[maxvalue ]\n\t[cache ]\n\t[cycle];"}, { "create table", "create a new table", "create table ( ,... )\n\t[inherits (,...\n\tarchive=\n\tstore=\n\tarch_store=];"}, @@ -88,7 +91,7 @@ static struct _helpStruct QL_HELP[] = { "delete from [where ];"}, { "drop", "Please more be specific:", - "\tdrop aggregate\n\tdrop database\n\tdrop function\n\tdrop index\n\tdrop operator\n\tdrop rule\n\tdrop table\n\tdrop type\n\tdrop view"}, + "\tdrop aggregate\n\tdrop database\n\tdrop function\n\tdrop index\n\tdrop operator\n\tdrop rule\n\tdrop sequence\n\tdrop table\n\tdrop type\n\tdrop view"}, { "drop aggregate", "remove an aggregate function", "drop aggregate ;"}, @@ -110,6 +113,9 @@ static struct _helpStruct QL_HELP[] = { { "drop table", "remove a table", "drop table [,...[,...;"},