Constant Field Values

Contents

io.debezium.*

  • io.debezium.connector.sqlserver.AbstractSqlServerDatatypesTest 
    Modifier and Type Constant Field Value
    private static final String DDL_FP "create table type_fp ( id int not null, val_decimal decimal(6,3), val_numeric numeric, val_float float, val_real real, val_smallmoney smallmoney, val_money money primary key (id))"
    private static final String DDL_INT "create table type_int ( id int not null, val_bit bit, val_tinyint tinyint, val_smallint smallint, val_int int, val_bigint bigint, primary key (id))"
    private static final String DDL_STRING "create table type_string ( id int not null, val_char char(3), val_varchar varchar(1000), val_text text, val_nchar nchar(3), val_nvarchar nvarchar(1000), val_ntext ntext, primary key (id))"
    private static final String DDL_TIME "create table type_time ( id int not null, val_date date, val_time_p2 time(2), val_time time(4), val_datetime2 datetime2, val_datetimeoffset datetimeoffset, val_datetime datetime, val_smalldatetime smalldatetime, primary key (id))"
    private static final String DDL_XML "create table type_xml ( id int not null, val_xml xml, primary key (id))"
    static final String PRECISION_PARAMETER_KEY "connect.decimal.precision"
  • io.debezium.connector.sqlserver.SnapshotIT 
    Modifier and Type Constant Field Value
    private static final int INITIAL_RECORDS_PER_TABLE 500
    private static final int STREAMING_RECORDS_PER_TABLE 500
  • io.debezium.connector.sqlserver.SnapshotWithSelectOverridesIT 
    Modifier and Type Constant Field Value
    private static final int INITIAL_RECORDS_PER_TABLE 10
  • io.debezium.connector.sqlserver.TablesWithoutPrimaryKeyIT 
    Modifier and Type Constant Field Value
    private static final String DDL_STATEMENTS "CREATE TABLE t1 (pk INT UNIQUE, val INT);CREATE TABLE t2 (pk INT UNIQUE, val INT UNIQUE);CREATE TABLE t3 (pk INT, val INT);"
    private static final String DML_STATEMENTS "INSERT INTO t1 VALUES (1,10);INSERT INTO t2 VALUES (2,20);INSERT INTO t3 VALUES (3,30);"