diff options
Diffstat (limited to 'src/include/utils')
| -rw-r--r-- | src/include/utils/plancache.h | 3 | ||||
| -rw-r--r-- | src/include/utils/rel.h | 4 |
2 files changed, 4 insertions, 3 deletions
diff --git a/src/include/utils/plancache.h b/src/include/utils/plancache.h index 4f03cd9e0a2..91101a318d7 100644 --- a/src/include/utils/plancache.h +++ b/src/include/utils/plancache.h @@ -8,7 +8,7 @@ * Portions Copyright (c) 1996-2007, PostgreSQL Global Development Group * Portions Copyright (c) 1994, Regents of the University of California * - * $PostgreSQL: pgsql/src/include/utils/plancache.h,v 1.2 2007/03/15 23:12:07 tgl Exp $ + * $PostgreSQL: pgsql/src/include/utils/plancache.h,v 1.3 2007/03/19 23:38:32 wieck Exp $ * *------------------------------------------------------------------------- */ @@ -102,5 +102,6 @@ extern CachedPlan *RevalidateCachedPlan(CachedPlanSource *plansource, bool useResOwner); extern void ReleaseCachedPlan(CachedPlan *plan, bool useResOwner); extern TupleDesc PlanCacheComputeResultDesc(List *stmt_list); +extern bool HaveCachedPlans(void); #endif /* PLANCACHE_H */ diff --git a/src/include/utils/rel.h b/src/include/utils/rel.h index 4065eced821..2963cc6616a 100644 --- a/src/include/utils/rel.h +++ b/src/include/utils/rel.h @@ -7,7 +7,7 @@ * Portions Copyright (c) 1996-2007, PostgreSQL Global Development Group * Portions Copyright (c) 1994, Regents of the University of California * - * $PostgreSQL: pgsql/src/include/utils/rel.h,v 1.98 2007/02/27 23:48:10 tgl Exp $ + * $PostgreSQL: pgsql/src/include/utils/rel.h,v 1.99 2007/03/19 23:38:32 wieck Exp $ * *------------------------------------------------------------------------- */ @@ -53,7 +53,7 @@ typedef struct Trigger char *tgname; Oid tgfoid; int16 tgtype; - bool tgenabled; + char tgenabled; bool tgisconstraint; Oid tgconstrrelid; Oid tgconstraint; |
