blob: a4b5647e02a7d1ac8773aa5c07bed1c931be956e (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
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;
}
|