Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
P
Postgres FD Implementation
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Abuhujair Javed
Postgres FD Implementation
Commits
05a436b3
Commit
05a436b3
authored
Oct 16, 1997
by
Vadim B. Mikheev
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
DROP TRIGGER.
parent
9b10d6ff
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
8 additions
and
5 deletions
+8
-5
src/bin/psql/psqlHelp.h
src/bin/psql/psqlHelp.h
+8
-5
No files found.
src/bin/psql/psqlHelp.h
View file @
05a436b3
...
...
@@ -5,7 +5,7 @@
*
* Copyright (c) 1994, Regents of the University of California
*
* $Id: psqlHelp.h,v 1.3
0 1997/10/02 13:58:06
vadim Exp $
* $Id: psqlHelp.h,v 1.3
1 1997/10/16 06:59:23
vadim Exp $
*
*-------------------------------------------------------------------------
*/
...
...
@@ -95,7 +95,7 @@ static struct _helpStruct QL_HELP[] = {
"delete from <class_name> [where <qual>];"
},
{
"drop"
,
"Please more be specific:"
,
"
\t
drop aggregate
\n\t
drop database
\n\t
drop function
\n\t
drop index
\n\t
drop operator
\n\t
drop rule
\n\t
drop sequence
\n\t
drop table
\n\t
drop type
\n\t
drop view"
},
"
\t
drop aggregate
\n\t
drop database
\n\t
drop function
\n\t
drop index
\n\t
drop operator
\n\t
drop rule
\n\t
drop sequence
\n\t
drop table
\n\t
drop t
rigger
\n\t
drop t
ype
\n\t
drop view"
},
{
"drop aggregate"
,
"remove an aggregate function"
,
"drop aggregate <agg_name> <agg_type>|*;"
},
...
...
@@ -114,12 +114,15 @@ static struct _helpStruct QL_HELP[] = {
{
"drop rule"
,
"remove a rule"
,
"drop rule <rulename>;"
},
{
"drop table"
,
"remove a table"
,
"drop table <class_name>[,...<class_nameN];"
},
{
"drop sequence"
,
"remove a sequence number generator"
,
"drop sequence <sequence_name>[,...<sequence_nameN];"
},
{
"drop table"
,
"remove a table"
,
"drop table <class_name>[,...<class_nameN];"
},
{
"drop trigger"
,
"remove a trigger"
,
"drop trigger <trigger_name> on <class_name>;"
},
{
"drop type"
,
"remove a user-defined base type"
,
"drop type <typename>;"
},
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment