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
a7880277
Commit
a7880277
authored
Sep 30, 1997
by
Vadim B. Mikheev
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Little changes.
parent
7a5d3fbd
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
15 additions
and
9 deletions
+15
-9
src/man/create_trigger.l
src/man/create_trigger.l
+9
-3
src/man/drop_trigger.l
src/man/drop_trigger.l
+6
-6
No files found.
src/man/create_trigger.l
View file @
a7880277
.\" This is -*-nroff-*-
.\" XXX standard disclaimer belongs here....
.\" $Header: /cvsroot/pgsql/src/man/Attic/create_trigger.l,v 1.
1 1997/09/26 15:13:08 thomas
Exp $
.\" $Header: /cvsroot/pgsql/src/man/Attic/create_trigger.l,v 1.
2 1997/09/30 09:50:27 vadim
Exp $
.TH "CREATE TRIGGER" SQL 09/25/97 PostgreSQL
.SH NAME
create trigger \(em create a new trigger
.SH SYNOPSIS
.nf
\fBcreate trigger\fR trigname \fB{before|after}\fP \fB{insert|update|delete}\fB
\fBcreate trigger\fR trigname \fB{before|after}\fP
\fB{Event1 [OR Event2 [OR Event3]]}\fB
\fBon\fR relname \fBfor each {row|statement}\fR
\fBexecute procedure\fR funcname \fB(\fR arguments \fB)\fR
where \fBEventX\fR is one of INSERT, DELETE, UPDATE
.fi
.SH DESCRIPTION
.BR "Create Trigger"
...
...
@@ -18,6 +21,9 @@ associated with the relation
and will execute the specified
.IR funcname .
Only relation owner may create a trigger on this relation.
Currently, STATEMENT triggers are not implemented.
.PP
The trigger can be specified to fire either
.BR before
...
...
@@ -30,7 +36,7 @@ If the trigger fires
.BR before
then the trigger may
skip the operation for the current tuple,
or change t
he current tuple (for insert/dele
te operations only).
or change t
uple being inserted (for insert/upda
te operations only).
If the trigger fires
.BR after
then all changes including the last insertion/updation/deletion
...
...
src/man/drop_trigger.l
View file @
a7880277
.\" This is -*-nroff-*-
.\" XXX standard disclaimer belongs here....
.\" $Header: /cvsroot/pgsql/src/man/Attic/drop_trigger.l,v 1.
1 1997/09/26 15:13:09 thomas
Exp $
.\" $Header: /cvsroot/pgsql/src/man/Attic/drop_trigger.l,v 1.
2 1997/09/30 09:50:28 vadim
Exp $
.TH "DROP TRIGGER" SQL 09/26/97 PostgreSQL
.SH NAME
drop trigger \(em destroy existing
classes
drop trigger \(em destroy existing
trigger
.SH SYNOPSIS
.nf
\fBdrop trigger\fR trigname
\fBdrop trigger\fR trigname
\fBon\fR relname
.fi
.SH DESCRIPTION
.BR "Drop Trigger"
removes trigger
s from the data base. Only its
owner may destroy a
removes trigger
for relation from the data base. Only relation
owner may destroy a
trigger.
.SH EXAMPLE
.nf
--
--Destroy the empverify trigger
--Destroy the empverify trigger
on relation emp
--
drop trigger empverify
drop trigger empverify
on emp
.fi
.SH "SEE ALSO"
create trigger(l).
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