risingwave_connector::source::cdc

Type Alias MongodbCdcProperties

source
pub type MongodbCdcProperties = CdcProperties<Mongodb>;

Aliased Type§

struct MongodbCdcProperties {
    pub properties: BTreeMap<String, String>,
    pub table_schema: TableSchema,
    pub is_cdc_source_job: bool,
    pub is_backfill_table: bool,
    pub _phantom: PhantomData<Mongodb>,
}

Fields§

§properties: BTreeMap<String, String>

Properties specified in the WITH clause by user

§table_schema: TableSchema

Schema of the source specified by users

§is_cdc_source_job: bool

Whether it is created by a cdc source job

§is_backfill_table: bool

For validation purpose, mark if the table is a backfill cdc table

§_phantom: PhantomData<Mongodb>