*** pgsql/src/include/utils/resowner.h 2004/12/31 22:03:46 1.5 --- pgsql/src/include/utils/resowner.h 2009/12/03 11:04:13 1.5.4.1 *************** *** 12,18 **** * Portions Copyright (c) 1996-2005, PostgreSQL Global Development Group * Portions Copyright (c) 1994, Regents of the University of California * ! * $PostgreSQL: pgsql/src/include/utils/resowner.h,v 1.4 2004/08/29 05:06:59 momjian Exp $ * *------------------------------------------------------------------------- */ --- 12,18 ---- * Portions Copyright (c) 1996-2005, PostgreSQL Global Development Group * Portions Copyright (c) 1994, Regents of the University of California * ! * $PostgreSQL: pgsql/src/include/utils/resowner.h,v 1.5 2004/12/31 22:03:46 pgsql Exp $ * *------------------------------------------------------------------------- */ *************** *** 20,25 **** --- 20,26 ---- #define RESOWNER_H #include "storage/buf.h" + #include "storage/fd.h" #include "utils/catcache.h" #include "utils/rel.h" *************** extern void ResourceOwnerRememberRelatio *** 107,110 **** --- 108,118 ---- extern void ResourceOwnerForgetRelationRef(ResourceOwner owner, Relation rel); + /* support for temporary file management */ + extern void ResourceOwnerEnlargeFiles(ResourceOwner owner); + extern void ResourceOwnerRememberFile(ResourceOwner owner, + File file); + extern void ResourceOwnerForgetFile(ResourceOwner owner, + File file); + #endif /* RESOWNER_H */