aboutsummaryrefslogtreecommitdiff
path: root/src/include/nodes/replnodes.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/include/nodes/replnodes.h')
-rw-r--r--src/include/nodes/replnodes.h12
1 files changed, 12 insertions, 0 deletions
diff --git a/src/include/nodes/replnodes.h b/src/include/nodes/replnodes.h
index 236a36dd980..8d686879a9a 100644
--- a/src/include/nodes/replnodes.h
+++ b/src/include/nodes/replnodes.h
@@ -46,7 +46,19 @@ typedef struct BaseBackupCmd
typedef struct StartReplicationCmd
{
NodeTag type;
+ TimeLineID timeline;
XLogRecPtr startpoint;
} StartReplicationCmd;
+
+/* ----------------------
+ * TIMELINE_HISTORY command
+ * ----------------------
+ */
+typedef struct TimeLineHistoryCmd
+{
+ NodeTag type;
+ TimeLineID timeline;
+} TimeLineHistoryCmd;
+
#endif /* REPLNODES_H */