diff options
Diffstat (limited to 'src/include/storage/smgr.h')
-rw-r--r-- | src/include/storage/smgr.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/include/storage/smgr.h b/src/include/storage/smgr.h index c843bbc9692..0298ed1a2bc 100644 --- a/src/include/storage/smgr.h +++ b/src/include/storage/smgr.h @@ -15,6 +15,7 @@ #define SMGR_H #include "fmgr.h" +#include "lib/ilist.h" #include "storage/block.h" #include "storage/relfilenode.h" @@ -72,7 +73,7 @@ typedef struct SMgrRelationData struct _MdfdVec *md_seg_fds[MAX_FORKNUM + 1]; /* if unowned, list link in list of all unowned SMgrRelations */ - struct SMgrRelationData *next_unowned_reln; + dlist_node node; } SMgrRelationData; typedef SMgrRelationData *SMgrRelation; |