Skip to content

Commit 48acadb

Browse files
committed
replication: support official pgoutput decoding plugin
This is the plugin used during logical replication so it makes sense to support it here. Signed-off-by: Petros Angelatos <petrosagg@gmail.com>
1 parent 0b3fd10 commit 48acadb

File tree

2 files changed

+572
-0
lines changed

2 files changed

+572
-0
lines changed

postgres-protocol/src/replication/mod.rs

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,10 @@ use std::collections::HashMap;
22

33
use crate::message::backend::Parse;
44

5+
pub mod pgoutput;
56
pub mod raw;
67

8+
pub use pgoutput::PgOutput;
79
pub use raw::Raw;
810

911
pub trait DecodingPlugin {

0 commit comments

Comments
 (0)