Movatterモバイル変換


[0]ホーム

URL:


Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Sign up
Appearance settings

Commit4e9a3f4

Browse files
committed
Workplace for CREATE/DROP TRIGGER
1 parentf2cc46d commit4e9a3f4

File tree

2 files changed

+29
-2
lines changed

2 files changed

+29
-2
lines changed

‎src/backend/commands/Makefile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
# Makefile for commands
55
#
66
# IDENTIFICATION
7-
# $Header: /cvsroot/pgsql/src/backend/commands/Makefile,v 1.3 1997/04/02 03:51:23 vadim Exp $
7+
# $Header: /cvsroot/pgsql/src/backend/commands/Makefile,v 1.4 1997/08/31 11:40:12 vadim Exp $
88
#
99
#-------------------------------------------------------------------------
1010

@@ -19,7 +19,7 @@ CFLAGS+=$(INCLUDE_OPT)
1919

2020
OBJS = async.o creatinh.o command.o copy.o defind.o define.o\
2121
purge.o remove.o rename.o vacuum.o version.o view.o cluster.o\
22-
recipe.o explain.o sequence.o
22+
recipe.o explain.o sequence.o trigger.o
2323

2424
all: SUBSYS.o
2525

‎src/backend/commands/trigger.c

Lines changed: 27 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,27 @@
1+
/*-------------------------------------------------------------------------
2+
*
3+
* trigger.c--
4+
* PostgreSQL TRIGGERs support code.
5+
*
6+
*-------------------------------------------------------------------------
7+
*/
8+
#include"postgres.h"
9+
10+
#include"nodes/parsenodes.h"
11+
#include"commands/trigger.h"
12+
#include"catalog/pg_trigger.h"
13+
#include"utils/builtins.h"
14+
15+
void
16+
CreateTrigger (CreateTrigStmt*stmt)
17+
{
18+
19+
return;
20+
}
21+
22+
void
23+
DropTrigger (DropTrigStmt*stmt)
24+
{
25+
26+
return;
27+
}

0 commit comments

Comments
 (0)

[8]ページ先頭

©2009-2025 Movatter.jp