mirror of
https://git.postgresql.org/git/postgresql.git
synced 2025-02-23 19:39:53 +08:00
Fix failure of some headers to compile "standalone".
Recently-added references to ParseState weren't covered by #include
references, creating unwanted ordering dependencies for users of
these headers.
Oversight in commit 2bfb50b3d
. Per headerscheck/cpluspluscheck.
This commit is contained in:
parent
bc0cc68f8a
commit
678f5448c2
@ -16,7 +16,7 @@
|
||||
#define PUBLICATIONCMDS_H
|
||||
|
||||
#include "catalog/objectaddress.h"
|
||||
#include "nodes/parsenodes.h"
|
||||
#include "parser/parse_node.h"
|
||||
|
||||
extern ObjectAddress CreatePublication(ParseState *pstate, CreatePublicationStmt *stmt);
|
||||
extern void AlterPublication(ParseState *pstate, AlterPublicationStmt *stmt);
|
||||
|
@ -16,7 +16,7 @@
|
||||
#define SUBSCRIPTIONCMDS_H
|
||||
|
||||
#include "catalog/objectaddress.h"
|
||||
#include "nodes/parsenodes.h"
|
||||
#include "parser/parse_node.h"
|
||||
|
||||
extern ObjectAddress CreateSubscription(ParseState *pstate, CreateSubscriptionStmt *stmt,
|
||||
bool isTopLevel);
|
||||
|
Loading…
Reference in New Issue
Block a user