%PDF- %PDF-
| Direktori : /proc/thread-self/root/backups/router/usr/local/include/postgresql/server/replication/ |
| Current File : //proc/thread-self/root/backups/router/usr/local/include/postgresql/server/replication/pgoutput.h |
/*-------------------------------------------------------------------------
*
* pgoutput.h
* Logical Replication output plugin
*
* Copyright (c) 2015-2023, PostgreSQL Global Development Group
*
* IDENTIFICATION
* src/include/replication/pgoutput.h
*
*-------------------------------------------------------------------------
*/
#ifndef PGOUTPUT_H
#define PGOUTPUT_H
#include "nodes/pg_list.h"
typedef struct PGOutputData
{
MemoryContext context; /* private memory context for transient
* allocations */
MemoryContext cachectx; /* private memory context for cache data */
/* client-supplied info: */
uint32 protocol_version;
List *publication_names;
List *publications;
bool binary;
char streaming;
bool messages;
bool two_phase;
char *origin;
} PGOutputData;
#endif /* PGOUTPUT_H */