laminar_connectors/cdc.rs
1//! CDC (Change Data Capture) connectors for databases.
2//!
3//! Provides CDC source connectors that stream row-level changes
4//! from databases into LaminarDB using logical replication.
5//!
6//! # Supported Databases
7//!
8//! - **PostgreSQL**: Logical replication via `pgoutput` plugin
9//! - **MySQL**: Binary log replication with GTID support
10
11/// PostgreSQL logical replication CDC source connector.
12#[cfg(feature = "postgres-cdc")]
13pub mod postgres;
14
15/// MySQL binlog replication CDC source connector.
16#[cfg(feature = "mysql-cdc")]
17pub mod mysql;