diff options
Diffstat (limited to 'src/include')
-rw-r--r-- | src/include/storage/fd.h | 1 | ||||
-rw-r--r-- | src/include/storage/smgr.h | 2 |
2 files changed, 0 insertions, 3 deletions
diff --git a/src/include/storage/fd.h b/src/include/storage/fd.h index 8a4d07c5533..dc0aada35bc 100644 --- a/src/include/storage/fd.h +++ b/src/include/storage/fd.h @@ -61,7 +61,6 @@ extern int max_files_per_process; /* Operations on virtual Files --- equivalent to Unix kernel file ops */ extern File PathNameOpenFile(FileName fileName, int fileFlags, int fileMode); extern File OpenTemporaryFile(bool interXact); -extern void FileSetTransient(File file); extern void FileClose(File file); extern int FilePrefetch(File file, off_t offset, int amount); extern int FileRead(File file, char *buffer, int amount); diff --git a/src/include/storage/smgr.h b/src/include/storage/smgr.h index 48ee70f4187..47c4c1640a3 100644 --- a/src/include/storage/smgr.h +++ b/src/include/storage/smgr.h @@ -62,7 +62,6 @@ typedef struct SMgrRelationData * submodules. Do not touch them from elsewhere. */ int smgr_which; /* storage manager selector */ - bool smgr_transient; /* T if files are to be closed at EOXact */ /* for md.c; NULL for forks that are not open */ struct _MdfdVec *md_fd[MAX_FORKNUM + 1]; @@ -75,7 +74,6 @@ typedef SMgrRelationData *SMgrRelation; extern void smgrinit(void); extern SMgrRelation smgropen(RelFileNode rnode, BackendId backend); -extern void smgrsettransient(SMgrRelation reln); extern bool smgrexists(SMgrRelation reln, ForkNumber forknum); extern void smgrsetowner(SMgrRelation *owner, SMgrRelation reln); extern void smgrclose(SMgrRelation reln); |