init
This commit is contained in:
32
db_include/replication/pgoutput.h
Executable file
32
db_include/replication/pgoutput.h
Executable file
@@ -0,0 +1,32 @@
|
||||
/*-------------------------------------------------------------------------
|
||||
*
|
||||
* pgoutput.h
|
||||
* Logical Replication output plugin
|
||||
*
|
||||
* Copyright (c) 2015-2021, PostgreSQL Global Development Group
|
||||
*
|
||||
* IDENTIFICATION
|
||||
* pgoutput.h
|
||||
*
|
||||
*-------------------------------------------------------------------------
|
||||
*/
|
||||
#ifndef PGOUTPUT_H
|
||||
#define PGOUTPUT_H
|
||||
|
||||
#include "nodes/pg_list.h"
|
||||
|
||||
typedef struct PGOutputData
|
||||
{
|
||||
MemoryContext context; /* private memory context for transient
|
||||
* allocations */
|
||||
|
||||
/* client-supplied info: */
|
||||
uint32 protocol_version;
|
||||
List *publication_names;
|
||||
List *publications;
|
||||
bool binary;
|
||||
bool streaming;
|
||||
bool messages;
|
||||
} PGOutputData;
|
||||
|
||||
#endif /* PGOUTPUT_H */
|
||||
Reference in New Issue
Block a user