Location via proxy:   [ UP ]  
[Report a bug]   [Manage cookies]                
Skip to content

Commit e11cb8b

Browse files
committed
Fix missing #include in commands/matview.h.
It needs parsenodes.h to be compilable regardless of previous headers.
1 parent c5bf7a2 commit e11cb8b

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

src/include/commands/matview.h

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
* prototypes for matview.c.
55
*
66
*
7-
* Portions Copyright (c) 1996-2012, PostgreSQL Global Development Group
7+
* Portions Copyright (c) 1996-2013, PostgreSQL Global Development Group
88
* Portions Copyright (c) 1994, Regents of the University of California
99
*
1010
* src/include/commands/matview.h
@@ -15,9 +15,11 @@
1515
#define MATVIEW_H
1616

1717
#include "nodes/params.h"
18+
#include "nodes/parsenodes.h"
1819
#include "tcop/dest.h"
1920
#include "utils/relcache.h"
2021

22+
2123
extern void SetRelationIsScannable(Relation relation);
2224

2325
extern void ExecRefreshMatView(RefreshMatViewStmt *stmt, const char *queryString,

0 commit comments

Comments
 (0)