Fix indentation in twophase.c
[pgsql.git] / src / include / commands / subscriptioncmds.h
blob214dc6c29e4498562b8fd32dcee99827bc501153
1 /*-------------------------------------------------------------------------
3 * subscriptioncmds.h
4 * prototypes for subscriptioncmds.c.
7 * Portions Copyright (c) 1996-2023, PostgreSQL Global Development Group
8 * Portions Copyright (c) 1994, Regents of the University of California
10 * src/include/commands/subscriptioncmds.h
12 *-------------------------------------------------------------------------
15 #ifndef SUBSCRIPTIONCMDS_H
16 #define SUBSCRIPTIONCMDS_H
18 #include "catalog/objectaddress.h"
19 #include "parser/parse_node.h"
21 extern ObjectAddress CreateSubscription(ParseState *pstate, CreateSubscriptionStmt *stmt,
22 bool isTopLevel);
23 extern ObjectAddress AlterSubscription(ParseState *pstate, AlterSubscriptionStmt *stmt, bool isTopLevel);
24 extern void DropSubscription(DropSubscriptionStmt *stmt, bool isTopLevel);
26 extern ObjectAddress AlterSubscriptionOwner(const char *name, Oid newOwnerId);
27 extern void AlterSubscriptionOwner_oid(Oid subid, Oid newOwnerId);
29 extern char defGetStreamingMode(DefElem *def);
31 #endif /* SUBSCRIPTIONCMDS_H */