diff options
Diffstat (limited to 'src/include/utils/rel.h')
| -rw-r--r-- | src/include/utils/rel.h | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/src/include/utils/rel.h b/src/include/utils/rel.h index e5008e56ea..b7f85eda68 100644 --- a/src/include/utils/rel.h +++ b/src/include/utils/rel.h @@ -7,7 +7,7 @@ * Portions Copyright (c) 1996-2003, PostgreSQL Global Development Group * Portions Copyright (c) 1994, Regents of the University of California * - * $PostgreSQL: pgsql/src/include/utils/rel.h,v 1.74 2004/05/08 19:09:25 tgl Exp $ + * $PostgreSQL: pgsql/src/include/utils/rel.h,v 1.75 2004/07/01 00:51:44 tgl Exp $ * *------------------------------------------------------------------------- */ @@ -110,6 +110,9 @@ typedef struct RelationData BlockNumber rd_targblock; /* current insertion target block, or * InvalidBlockNumber */ int rd_refcnt; /* reference count */ + int *rd_prevrefcnt; /* reference count stack */ + int rd_numalloc; /* stack allocated size */ + int rd_numpushed; /* stack used size */ bool rd_isnew; /* rel was created in current xact */ /* |
