Skip to content
Snippets Groups Projects
Commit 3a56b218 authored by Bruce Momjian's avatar Bruce Momjian
Browse files

Update help for alter table. remove EXTEND function.

parent e8e78f4c
No related branches found
No related tags found
No related merge requests found
...@@ -5,7 +5,7 @@ ...@@ -5,7 +5,7 @@
* *
* Copyright (c) 1994, Regents of the University of California * Copyright (c) 1994, Regents of the University of California
* *
* $Id: psqlHelp.h,v 1.5 1996/10/03 15:46:31 momjian Exp $ * $Id: psqlHelp.h,v 1.6 1996/10/07 02:32:39 momjian Exp $
* *
*------------------------------------------------------------------------- *-------------------------------------------------------------------------
*/ */
...@@ -25,7 +25,7 @@ static struct _helpStruct QL_HELP[] = { ...@@ -25,7 +25,7 @@ static struct _helpStruct QL_HELP[] = {
"abort [transaction];"}, "abort [transaction];"},
{ "alter table", { "alter table",
"add/rename attributes, rename tables", "add/rename attributes, rename tables",
"alter table <class_name> [*] add column <attr> <type>;\n\talter table <class_name> [*] rename [column] <attr1> to <attr2>;\n\talter table <class_name1> rename to <class_name2>"}, "\talter table <class_name> [*] add column <attr> <type>;\n\talter table <class_name> [*] rename [column] <attr1> to <attr2>;\n\talter table <class_name1> rename to <class_name2>"},
{ "begin", { "begin",
"begin a new transaction", "begin a new transaction",
"begin [transaction|work];"}, "begin [transaction|work];"},
...@@ -125,9 +125,6 @@ static struct _helpStruct QL_HELP[] = { ...@@ -125,9 +125,6 @@ static struct _helpStruct QL_HELP[] = {
{ "explain", { "explain",
"explain the query execution plan", "explain the query execution plan",
"explain [with {cost|full_plan}] <query>"}, "explain [with {cost|full_plan}] <query>"},
{ "extend index",
"extend a partial index",
"extend index <indexname> [where <qual>];"},
{ "fetch", { "fetch",
"retrieve tuples from a cursor", "retrieve tuples from a cursor",
"fetch [forward|backward] [<number>|all] [in <cursorname>];"}, "fetch [forward|backward] [<number>|all] [in <cursorname>];"},
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment