/*------------------------------------------------------------------------- * * 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; }