mirror of https://github.com/postgres/postgres
parent
f2cc46dd54
commit
4e9a3f4ef0
@ -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