diff options
author | Tom Lane <tgl@sss.pgh.pa.us> | 2013-03-06 18:20:51 -0500 |
---|---|---|
committer | Tom Lane <tgl@sss.pgh.pa.us> | 2013-03-06 18:21:05 -0500 |
commit | e11cb8ba2c9134c9f16253213f2f0cf089c5838e (patch) | |
tree | cfe7124edc9a8e6e911d8dc07e268a4f0a2a65c4 /src | |
parent | c5bf7a2052c8e7ebbd1ca3986525c3629d7345d1 (diff) | |
download | postgresql-e11cb8ba2c9134c9f16253213f2f0cf089c5838e.tar.gz postgresql-e11cb8ba2c9134c9f16253213f2f0cf089c5838e.zip |
Fix missing #include in commands/matview.h.
It needs parsenodes.h to be compilable regardless of previous headers.
Diffstat (limited to 'src')
-rw-r--r-- | src/include/commands/matview.h | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/src/include/commands/matview.h b/src/include/commands/matview.h index 6de3c1aa93a..b5d52503c0d 100644 --- a/src/include/commands/matview.h +++ b/src/include/commands/matview.h @@ -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 @@ -15,9 +15,11 @@ #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, |