Fix missing #include in commands/matview.h.
authorTom Lane <tgl@sss.pgh.pa.us>
Wed, 6 Mar 2013 23:20:51 +0000 (18:20 -0500)
committerTom Lane <tgl@sss.pgh.pa.us>
Wed, 6 Mar 2013 23:21:05 +0000 (18:21 -0500)
It needs parsenodes.h to be compilable regardless of previous headers.

src/include/commands/matview.h

index 6de3c1aa93a24f2de25272d6234ce36e5cb31072..b5d52503c0d2d178da22fef1f7fe95cd50f8e3fc 100644 (file)
@@ -4,7 +4,7 @@
  *   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
  *
  * src/include/commands/matview.h
 #define MATVIEW_H
 
 #include "nodes/params.h"
+#include "nodes/parsenodes.h"
 #include "tcop/dest.h"
 #include "utils/relcache.h"
 
+
 extern void SetRelationIsScannable(Relation relation);
 
 extern void ExecRefreshMatView(RefreshMatViewStmt *stmt, const char *queryString,