Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
P
Postgres FD Implementation
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Abuhujair Javed
Postgres FD Implementation
Commits
b4800867
Commit
b4800867
authored
Jan 21, 2017
by
Peter Eisentraut
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Add more includes so header files are self-contained
parent
d2ab1176
Changes
5
Show whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
6 additions
and
0 deletions
+6
-0
src/include/catalog/pg_subscription.h
src/include/catalog/pg_subscription.h
+1
-0
src/include/commands/publicationcmds.h
src/include/commands/publicationcmds.h
+1
-0
src/include/commands/subscriptioncmds.h
src/include/commands/subscriptioncmds.h
+1
-0
src/include/replication/pgoutput.h
src/include/replication/pgoutput.h
+1
-0
src/include/replication/worker_internal.h
src/include/replication/worker_internal.h
+2
-0
No files found.
src/include/catalog/pg_subscription.h
View file @
b4800867
...
...
@@ -12,6 +12,7 @@
#define PG_SUBSCRIPTION_H
#include "catalog/genbki.h"
#include "nodes/pg_list.h"
/* ----------------
* pg_subscription definition. cpp turns this into
...
...
src/include/commands/publicationcmds.h
View file @
b4800867
...
...
@@ -15,6 +15,7 @@
#ifndef PUBLICATIONCMDS_H
#define PUBLICATIONCMDS_H
#include "catalog/objectaddress.h"
#include "nodes/parsenodes.h"
extern
ObjectAddress
CreatePublication
(
CreatePublicationStmt
*
stmt
);
...
...
src/include/commands/subscriptioncmds.h
View file @
b4800867
...
...
@@ -15,6 +15,7 @@
#ifndef SUBSCRIPTIONCMDS_H
#define SUBSCRIPTIONCMDS_H
#include "catalog/objectaddress.h"
#include "nodes/parsenodes.h"
extern
ObjectAddress
CreateSubscription
(
CreateSubscriptionStmt
*
stmt
);
...
...
src/include/replication/pgoutput.h
View file @
b4800867
...
...
@@ -13,6 +13,7 @@
#ifndef PGOUTPUT_H
#define PGOUTPUT_H
#include "nodes/pg_list.h"
typedef
struct
PGOutputData
{
...
...
src/include/replication/worker_internal.h
View file @
b4800867
...
...
@@ -12,7 +12,9 @@
#ifndef WORKER_INTERNAL_H
#define WORKER_INTERNAL_H
#include "access/xlogdefs.h"
#include "catalog/pg_subscription.h"
#include "datatype/timestamp.h"
#include "storage/lock.h"
typedef
struct
LogicalRepWorker
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment