Skip to main content

laminar_connectors/
cdc.rs

1//! Change Data Capture (CDC) source connectors.
2//! PostgreSQL uses logical replication (`pgoutput`); MySQL uses the
3//! binary log with GTID support.
4
5#[cfg(feature = "mysql-cdc")]
6pub mod mysql;
7#[cfg(feature = "postgres-cdc")]
8pub mod postgres;