Commit e11cb8ba authored by Tom Lane's avatar Tom Lane

Fix missing #include in commands/matview.h.

It needs parsenodes.h to be compilable regardless of previous headers.
parent c5bf7a20
...@@ -4,7 +4,7 @@ ...@@ -4,7 +4,7 @@
* prototypes for matview.c. * prototypes for matview.c.
* *
* *
* Portions Copyright (c) 1996-2012, PostgreSQL Global Development Group * Portions Copyright (c) 1996-2013, PostgreSQL Global Development Group
* Portions Copyright (c) 1994, Regents of the University of California * Portions Copyright (c) 1994, Regents of the University of California
* *
* src/include/commands/matview.h * src/include/commands/matview.h
...@@ -15,9 +15,11 @@ ...@@ -15,9 +15,11 @@
#define MATVIEW_H #define MATVIEW_H
#include "nodes/params.h" #include "nodes/params.h"
#include "nodes/parsenodes.h"
#include "tcop/dest.h" #include "tcop/dest.h"
#include "utils/relcache.h" #include "utils/relcache.h"
extern void SetRelationIsScannable(Relation relation); extern void SetRelationIsScannable(Relation relation);
extern void ExecRefreshMatView(RefreshMatViewStmt *stmt, const char *queryString, extern void ExecRefreshMatView(RefreshMatViewStmt *stmt, const char *queryString,
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment