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
4e9a3f4e
Commit
4e9a3f4e
authored
Aug 31, 1997
by
Vadim B. Mikheev
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Workplace for CREATE/DROP TRIGGER
parent
f2cc46dd
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
29 additions
and
2 deletions
+29
-2
src/backend/commands/Makefile
src/backend/commands/Makefile
+2
-2
src/backend/commands/trigger.c
src/backend/commands/trigger.c
+27
-0
No files found.
src/backend/commands/Makefile
View file @
4e9a3f4e
...
...
@@ -4,7 +4,7 @@
# Makefile for commands
#
# IDENTIFICATION
# $Header: /cvsroot/pgsql/src/backend/commands/Makefile,v 1.
3 1997/04/02 03:51:23
vadim Exp $
# $Header: /cvsroot/pgsql/src/backend/commands/Makefile,v 1.
4 1997/08/31 11:40:12
vadim Exp $
#
#-------------------------------------------------------------------------
...
...
@@ -19,7 +19,7 @@ CFLAGS+=$(INCLUDE_OPT)
OBJS
=
async.o creatinh.o command.o copy.o defind.o define.o
\
purge.o remove.o rename.o vacuum.o version.o view.o cluster.o
\
recipe.o explain.o sequence.o
recipe.o explain.o sequence.o
trigger.o
all
:
SUBSYS.o
...
...
src/backend/commands/trigger.c
0 → 100644
View file @
4e9a3f4e
/*-------------------------------------------------------------------------
*
* trigger.c--
* PostgreSQL TRIGGERs support code.
*
*-------------------------------------------------------------------------
*/
#include "postgres.h"
#include "nodes/parsenodes.h"
#include "commands/trigger.h"
#include "catalog/pg_trigger.h"
#include "utils/builtins.h"
void
CreateTrigger
(
CreateTrigStmt
*
stmt
)
{
return
;
}
void
DropTrigger
(
DropTrigStmt
*
stmt
)
{
return
;
}
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