mirror of
https://github.com/postgres/postgres.git
synced 2025-06-16 06:01:02 +03:00
Workplace for CREATE/DROP TRIGGER
This commit is contained in:
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;
|
||||
}
|
Reference in New Issue
Block a user