1 /*-------------------------------------------------------------------------
4 * Logical Replication output plugin
6 * Copyright (c) 2015-2022, PostgreSQL Global Development Group
9 * src/include/replication/pgoutput.h
11 *-------------------------------------------------------------------------
16 #include "nodes/pg_list.h"
18 typedef struct PGOutputData
20 MemoryContext context
; /* private memory context for transient
22 MemoryContext cachectx
; /* private memory context for cache data */
24 /* client-supplied info: */
25 uint32 protocol_version
;
26 List
*publication_names
;
35 #endif /* PGOUTPUT_H */