mirror of
https://github.com/postgres/postgres.git
synced 2025-08-28 18:48:04 +03:00
Used modified version of indent that understands over 100 typedefs.
This commit is contained in:
@@ -37,13 +37,13 @@ TriggerData *CurrentTriggerData = NULL;
|
||||
void RelationBuildTriggers(Relation relation);
|
||||
void FreeTriggerDesc(Relation relation);
|
||||
|
||||
static void DescribeTrigger(TriggerDesc * trigdesc, Trigger * trigger);
|
||||
static void DescribeTrigger(TriggerDesc *trigdesc, Trigger *trigger);
|
||||
|
||||
extern void fmgr_info(Oid procedureId, func_ptr * function, int *nargs);
|
||||
extern void fmgr_info(Oid procedureId, func_ptr *function, int *nargs);
|
||||
extern GlobalMemory CacheCxt;
|
||||
|
||||
void
|
||||
CreateTrigger(CreateTrigStmt * stmt)
|
||||
CreateTrigger(CreateTrigStmt *stmt)
|
||||
{
|
||||
int16 tgtype;
|
||||
int16 tgattr[8] = {0};
|
||||
@@ -211,7 +211,7 @@ CreateTrigger(CreateTrigStmt * stmt)
|
||||
}
|
||||
|
||||
void
|
||||
DropTrigger(DropTrigStmt * stmt)
|
||||
DropTrigger(DropTrigStmt *stmt)
|
||||
{
|
||||
Relation rel;
|
||||
Relation tgrel;
|
||||
@@ -481,7 +481,7 @@ FreeTriggerDesc(Relation relation)
|
||||
}
|
||||
|
||||
static void
|
||||
DescribeTrigger(TriggerDesc * trigdesc, Trigger * trigger)
|
||||
DescribeTrigger(TriggerDesc *trigdesc, Trigger *trigger)
|
||||
{
|
||||
uint16 *n;
|
||||
Trigger ***t,
|
||||
|
Reference in New Issue
Block a user