mirror of
https://git.postgresql.org/git/postgresql.git
synced 2026-02-15 02:46:59 +08:00
The output plugin accepts a new parameter (messages) that controls if logical decoding messages are written into the replication stream. It is useful for those clients that use pgoutput as an output plugin and needs to process messages that were written by pg_logical_emit_message(). Although logical streaming replication protocol supports logical decoding messages now, logical replication does not use this feature yet. Author: David Pirotte, Euler Taveira Reviewed-by: Euler Taveira, Andres Freund, Ashutosh Bapat, Amit Kapila Discussion: https://postgr.es/m/CADK3HHJ-+9SO7KuRLH=9Wa1rAo60Yreq1GFNkH_kd0=CdaWM+A@mail.gmail.com
33 lines
712 B
C
33 lines
712 B
C
/*-------------------------------------------------------------------------
|
|
*
|
|
* 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 */
|