Location via proxy:   [ UP ]  
[Report a bug]   [Manage cookies]                
Skip to content

Commit 05a436b

Browse files
committed
DROP TRIGGER.
1 parent 9b10d6f commit 05a436b

File tree

1 file changed

+8
-5
lines changed

1 file changed

+8
-5
lines changed

src/bin/psql/psqlHelp.h

Lines changed: 8 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
*
66
* Copyright (c) 1994, Regents of the University of California
77
*
8-
* $Id: psqlHelp.h,v 1.30 1997/10/02 13:58:06 vadim Exp $
8+
* $Id: psqlHelp.h,v 1.31 1997/10/16 06:59:23 vadim Exp $
99
*
1010
*-------------------------------------------------------------------------
1111
*/
@@ -95,7 +95,7 @@ static struct _helpStruct QL_HELP[] = {
9595
"delete from <class_name> [where <qual>];"},
9696
{"drop",
9797
"Please more be specific:",
98-
"\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"},
98+
"\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 trigger\n\tdrop type\n\tdrop view"},
9999
{"drop aggregate",
100100
"remove an aggregate function",
101101
"drop aggregate <agg_name> <agg_type>|*;"},
@@ -114,12 +114,15 @@ static struct _helpStruct QL_HELP[] = {
114114
{"drop rule",
115115
"remove a rule",
116116
"drop rule <rulename>;"},
117-
{"drop table",
118-
"remove a table",
119-
"drop table <class_name>[,...<class_nameN];"},
120117
{"drop sequence",
121118
"remove a sequence number generator",
122119
"drop sequence <sequence_name>[,...<sequence_nameN];"},
120+
{"drop table",
121+
"remove a table",
122+
"drop table <class_name>[,...<class_nameN];"},
123+
{"drop trigger",
124+
"remove a trigger",
125+
"drop trigger <trigger_name> on <class_name>;"},
123126
{"drop type",
124127
"remove a user-defined base type",
125128
"drop type <typename>;"},

0 commit comments

Comments
 (0)