PostgreSQL Source Code  git master
replnodes.h
Go to the documentation of this file.
1 /*-------------------------------------------------------------------------
2  *
3  * replnodes.h
4  * definitions for replication grammar parse nodes
5  *
6  *
7  * Portions Copyright (c) 1996-2023, PostgreSQL Global Development Group
8  * Portions Copyright (c) 1994, Regents of the University of California
9  *
10  * src/include/nodes/replnodes.h
11  *
12  *-------------------------------------------------------------------------
13  */
14 #ifndef REPLNODES_H
15 #define REPLNODES_H
16 
17 #include "access/xlogdefs.h"
18 #include "nodes/pg_list.h"
19 
20 typedef enum ReplicationKind
21 {
25 
26 
27 /* ----------------------
28  * IDENTIFY_SYSTEM command
29  * ----------------------
30  */
31 typedef struct IdentifySystemCmd
32 {
35 
36 
37 /* ----------------------
38  * BASE_BACKUP command
39  * ----------------------
40  */
41 typedef struct BaseBackupCmd
42 {
46 
47 
48 /* ----------------------
49  * CREATE_REPLICATION_SLOT command
50  * ----------------------
51  */
53 {
55  char *slotname;
57  char *plugin;
58  bool temporary;
61 
62 
63 /* ----------------------
64  * DROP_REPLICATION_SLOT command
65  * ----------------------
66  */
67 typedef struct DropReplicationSlotCmd
68 {
70  char *slotname;
71  bool wait;
73 
74 
75 /* ----------------------
76  * START_REPLICATION command
77  * ----------------------
78  */
79 typedef struct StartReplicationCmd
80 {
83  char *slotname;
88 
89 
90 /* ----------------------
91  * READ_REPLICATION_SLOT command
92  * ----------------------
93  */
94 typedef struct ReadReplicationSlotCmd
95 {
97  char *slotname;
99 
100 
101 /* ----------------------
102  * TIMELINE_HISTORY command
103  * ----------------------
104  */
105 typedef struct TimeLineHistoryCmd
106 {
110 
111 #endif /* REPLNODES_H */
NodeTag
Definition: nodes.h:27
struct IdentifySystemCmd IdentifySystemCmd
struct CreateReplicationSlotCmd CreateReplicationSlotCmd
ReplicationKind
Definition: replnodes.h:21
@ REPLICATION_KIND_PHYSICAL
Definition: replnodes.h:22
@ REPLICATION_KIND_LOGICAL
Definition: replnodes.h:23
struct DropReplicationSlotCmd DropReplicationSlotCmd
struct ReadReplicationSlotCmd ReadReplicationSlotCmd
struct StartReplicationCmd StartReplicationCmd
struct TimeLineHistoryCmd TimeLineHistoryCmd
struct BaseBackupCmd BaseBackupCmd
NodeTag type
Definition: replnodes.h:43
List * options
Definition: replnodes.h:44
ReplicationKind kind
Definition: replnodes.h:56
Definition: pg_list.h:54
XLogRecPtr startpoint
Definition: replnodes.h:85
ReplicationKind kind
Definition: replnodes.h:82
TimeLineID timeline
Definition: replnodes.h:84
TimeLineID timeline
Definition: replnodes.h:108
uint64 XLogRecPtr
Definition: xlogdefs.h:21
uint32 TimeLineID
Definition: xlogdefs.h:59