mirror of
https://github.com/postgres/postgres.git
synced 2025-07-03 20:02:46 +03: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:
@ -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);
|
||||||
|
Reference in New Issue
Block a user