mirror of
https://git.postgresql.org/git/postgresql.git
synced 2024-12-27 08:39:28 +08:00
Workplace for CREATE/DROP TRIGGER
This commit is contained in:
parent
f2cc46dd54
commit
4e9a3f4ef0
@ -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
|
||||
|
||||
|
27
src/backend/commands/trigger.c
Normal file
27
src/backend/commands/trigger.c
Normal file
@ -0,0 +1,27 @@
|
||||
/*-------------------------------------------------------------------------
|
||||
*
|
||||
* 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;
|
||||
}
|
Loading…
Reference in New Issue
Block a user