OSDN Git Service

rebuid:
[eos/hostdependX86MAC64.git] / util / X86MAC64 / include / postgresql / server / commands / matview.h
1 /*-------------------------------------------------------------------------
2  *
3  * matview.h
4  *        prototypes for matview.c.
5  *
6  *
7  * Portions Copyright (c) 1996-2014, PostgreSQL Global Development Group
8  * Portions Copyright (c) 1994, Regents of the University of California
9  *
10  * src/include/commands/matview.h
11  *
12  *-------------------------------------------------------------------------
13  */
14 #ifndef MATVIEW_H
15 #define MATVIEW_H
16
17 #include "nodes/params.h"
18 #include "nodes/parsenodes.h"
19 #include "tcop/dest.h"
20 #include "utils/relcache.h"
21
22
23 extern void SetMatViewPopulatedState(Relation relation, bool newstate);
24
25 extern void ExecRefreshMatView(RefreshMatViewStmt *stmt, const char *queryString,
26                                    ParamListInfo params, char *completionTag);
27
28 extern DestReceiver *CreateTransientRelDestReceiver(Oid oid);
29
30 extern bool MatViewIncrementalMaintenanceIsEnabled(void);
31
32 #endif   /* MATVIEW_H */