diff options
| author | Vadim B. Mikheev <vadim4o@yahoo.com> | 2000-09-07 09:58:38 +0000 |
|---|---|---|
| committer | Vadim B. Mikheev <vadim4o@yahoo.com> | 2000-09-07 09:58:38 +0000 |
| commit | f2bfe8a24c46133f81e188653a127f939eb33c4a (patch) | |
| tree | 51525a498eba055dda2fb362985af1231d02a831 /src/include/utils/rel.h | |
| parent | c18c321365117cd60fe42f562838fe126317bf52 (diff) | |
| download | postgresql-f2bfe8a24c46133f81e188653a127f939eb33c4a.tar.gz | |
Heap redo/undo (except for tuple moving used by vacuum).
Diffstat (limited to 'src/include/utils/rel.h')
| -rw-r--r-- | src/include/utils/rel.h | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/src/include/utils/rel.h b/src/include/utils/rel.h index c90ba3c5ee..4deec0618a 100644 --- a/src/include/utils/rel.h +++ b/src/include/utils/rel.h @@ -7,7 +7,7 @@ * Portions Copyright (c) 1996-2000, PostgreSQL, Inc * Portions Copyright (c) 1994, Regents of the University of California * - * $Id: rel.h,v 1.40 2000/07/14 22:18:02 tgl Exp $ + * $Id: rel.h,v 1.41 2000/09/07 09:58:38 vadim Exp $ * *------------------------------------------------------------------------- */ @@ -19,6 +19,7 @@ #include "catalog/pg_am.h" #include "catalog/pg_class.h" #include "rewrite/prs2lock.h" +#include "storage/relfilenode.h" #include "storage/fd.h" /* added to prevent circular dependency. bjm 1999/11/15 */ @@ -86,6 +87,7 @@ typedef struct TriggerDesc typedef struct RelationData { File rd_fd; /* open file descriptor, or -1 if none */ + RelFileNode rd_node; /* relation file node */ int rd_nblocks; /* number of blocks in rel */ uint16 rd_refcnt; /* reference count */ bool rd_myxactonly; /* rel uses the local buffer mgr */ |
