diff options
author | Tom Lane <tgl@sss.pgh.pa.us> | 2002-03-29 22:10:34 +0000 |
---|---|---|
committer | Tom Lane <tgl@sss.pgh.pa.us> | 2002-03-29 22:10:34 +0000 |
commit | d67442ccfd654f0f021ec4499804d681706dfc4e (patch) | |
tree | ae6bdb517931870d8d721d25841f705d05e47d0d /src/include/commands/trigger.h | |
parent | ea13a3fab28bad7e747eb0492036bdcb705ead33 (diff) | |
download | postgresql-d67442ccfd654f0f021ec4499804d681706dfc4e.tar.gz postgresql-d67442ccfd654f0f021ec4499804d681706dfc4e.zip |
Mop-up some infelicities in new relation lookup handling.
Diffstat (limited to 'src/include/commands/trigger.h')
-rw-r--r-- | src/include/commands/trigger.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/include/commands/trigger.h b/src/include/commands/trigger.h index 34833ea5303..c08a4151e3a 100644 --- a/src/include/commands/trigger.h +++ b/src/include/commands/trigger.h @@ -6,7 +6,7 @@ * Portions Copyright (c) 1996-2001, PostgreSQL Global Development Group * Portions Copyright (c) 1994, Regents of the University of California * - * $Id: trigger.h,v 1.32 2001/11/16 16:31:16 tgl Exp $ + * $Id: trigger.h,v 1.33 2002/03/29 22:10:34 tgl Exp $ * *------------------------------------------------------------------------- */ @@ -96,7 +96,7 @@ typedef struct TriggerData extern void CreateTrigger(CreateTrigStmt *stmt); -extern void DropTrigger(DropTrigStmt *stmt); +extern void DropTrigger(Oid relid, const char *trigname); extern void RelationRemoveTriggers(Relation rel); extern void RelationBuildTriggers(Relation relation); |