]> granicus.if.org Git - postgresql/blob - src/include/utils/inval.h
Commit to match discussed elog() changes. Only update is that LOG is
[postgresql] / src / include / utils / inval.h
1 /*-------------------------------------------------------------------------
2  *
3  * inval.h
4  *        POSTGRES cache invalidation dispatcher definitions.
5  *
6  *
7  * Portions Copyright (c) 1996-2001, PostgreSQL Global Development Group
8  * Portions Copyright (c) 1994, Regents of the University of California
9  *
10  * $Id: inval.h,v 1.23 2001/11/05 17:46:36 momjian Exp $
11  *
12  *-------------------------------------------------------------------------
13  */
14 #ifndef INVAL_H
15 #define INVAL_H
16
17 #include "access/htup.h"
18
19
20 extern void AcceptInvalidationMessages(void);
21
22 extern void AtEOXactInvalidationMessages(bool isCommit);
23
24 extern void CommandEndInvalidationMessages(bool isCommit);
25
26 extern void RelationInvalidateHeapTuple(Relation relation, HeapTuple tuple);
27
28 extern void RelationMark4RollbackHeapTuple(Relation relation, HeapTuple tuple);
29
30 #endif   /* INVAL_H */