risingwave_connector::source::cdc

Type Alias SqlServerCdcProperties

source
pub type SqlServerCdcProperties = CdcProperties<SqlServer>;

Aliased Type§

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

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<SqlServer>