mirror of
https://github.com/zebrajr/postgres.git
synced 2025-12-06 12:20:15 +01: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
|
#define PUBLICATIONCMDS_H
|
||||||
|
|
||||||
#include "catalog/objectaddress.h"
|
#include "catalog/objectaddress.h"
|
||||||
#include "nodes/parsenodes.h"
|
#include "parser/parse_node.h"
|
||||||
|
|
||||||
extern ObjectAddress CreatePublication(ParseState *pstate, CreatePublicationStmt *stmt);
|
extern ObjectAddress CreatePublication(ParseState *pstate, CreatePublicationStmt *stmt);
|
||||||
extern void AlterPublication(ParseState *pstate, AlterPublicationStmt *stmt);
|
extern void AlterPublication(ParseState *pstate, AlterPublicationStmt *stmt);
|
||||||
|
|
|
||||||
|
|
@ -16,7 +16,7 @@
|
||||||
#define SUBSCRIPTIONCMDS_H
|
#define SUBSCRIPTIONCMDS_H
|
||||||
|
|
||||||
#include "catalog/objectaddress.h"
|
#include "catalog/objectaddress.h"
|
||||||
#include "nodes/parsenodes.h"
|
#include "parser/parse_node.h"
|
||||||
|
|
||||||
extern ObjectAddress CreateSubscription(ParseState *pstate, CreateSubscriptionStmt *stmt,
|
extern ObjectAddress CreateSubscription(ParseState *pstate, CreateSubscriptionStmt *stmt,
|
||||||
bool isTopLevel);
|
bool isTopLevel);
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue
Block a user