postgresql/src/backend/commands/trigger.c

28 lines
476 B
C
Raw Normal View History

1997-08-31 13:40:13 +02:00
/*-------------------------------------------------------------------------
*
* 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;
}