00001 /*------------------------------------------------------------------------- 00002 * 00003 * reinit.h 00004 * Reinitialization of unlogged relations 00005 * 00006 * 00007 * Portions Copyright (c) 1996-2013, PostgreSQL Global Development Group 00008 * Portions Copyright (c) 1994, Regents of the University of California 00009 * 00010 * src/include/storage/fd.h 00011 * 00012 *------------------------------------------------------------------------- 00013 */ 00014 00015 #ifndef REINIT_H 00016 #define REINIT_H 00017 00018 extern void ResetUnloggedRelations(int op); 00019 00020 #define UNLOGGED_RELATION_CLEANUP 0x0001 00021 #define UNLOGGED_RELATION_INIT 0x0002 00022 00023 #endif /* REINIT_H */