00001 /*------------------------------------------------------------------------- 00002 * 00003 * matview.h 00004 * prototypes for matview.c. 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/commands/matview.h 00011 * 00012 *------------------------------------------------------------------------- 00013 */ 00014 #ifndef MATVIEW_H 00015 #define MATVIEW_H 00016 00017 #include "nodes/params.h" 00018 #include "nodes/parsenodes.h" 00019 #include "tcop/dest.h" 00020 #include "utils/relcache.h" 00021 00022 00023 extern void SetMatViewToPopulated(Relation relation); 00024 00025 extern void ExecRefreshMatView(RefreshMatViewStmt *stmt, const char *queryString, 00026 ParamListInfo params, char *completionTag); 00027 00028 extern DestReceiver *CreateTransientRelDestReceiver(Oid oid); 00029 00030 #endif /* MATVIEW_H */