diff options
author | Amit Kapila <akapila@postgresql.org> | 2021-04-06 08:40:47 +0530 |
---|---|---|
committer | Amit Kapila <akapila@postgresql.org> | 2021-04-06 08:40:47 +0530 |
commit | ac4645c0157fc5fcef0af8ff571512aa284a2cec (patch) | |
tree | a414a4b21e4a79ac04cd67b8ed4ac907d9856f76 /src/backend/replication/logical/worker.c | |
parent | 531737ddad214cb8a675953208e2f3a6b1be122b (diff) | |
download | postgresql-ac4645c0157fc5fcef0af8ff571512aa284a2cec.tar.gz postgresql-ac4645c0157fc5fcef0af8ff571512aa284a2cec.zip |
Allow pgoutput to send logical decoding messages.
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
Diffstat (limited to 'src/backend/replication/logical/worker.c')
-rw-r--r-- | src/backend/replication/logical/worker.c | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/src/backend/replication/logical/worker.c b/src/backend/replication/logical/worker.c index 354fbe4b4bc..74d538b5e37 100644 --- a/src/backend/replication/logical/worker.c +++ b/src/backend/replication/logical/worker.c @@ -1939,6 +1939,15 @@ apply_dispatch(StringInfo s) apply_handle_origin(s); return; + case LOGICAL_REP_MSG_MESSAGE: + + /* + * Logical replication does not use generic logical messages yet. + * Although, it could be used by other applications that use this + * output plugin. + */ + return; + case LOGICAL_REP_MSG_STREAM_START: apply_handle_stream_start(s); return; |