/*------------------------------------------------------------------------- * * inval.h * POSTGRES cache invalidation dispatcher definitions. * * * Copyright (c) 1994, Regents of the University of California * * $Id: inval.h,v 1.14 1999/11/21 01:58:20 tgl Exp $ * *------------------------------------------------------------------------- */ #ifndef INVAL_H #define INVAL_H #include "access/htup.h" extern void DiscardInvalid(void); extern void RegisterInvalid(bool send); extern void RelationInvalidateHeapTuple(Relation relation, HeapTuple tuple); #endif /* INVAL_H */