Constant Field Values

Contents

io.debezium.*

  • io.debezium.connector.sqlserver.AbstractSqlServerDatatypesTest
    Modifier and Type
    Constant Field
    Value
    private static final String
    "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
    "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
    "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
    "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
    "create table type_xml ( id int not null, val_xml xml, primary key (id))"
    static final String
    "connect.decimal.precision"
  • io.debezium.connector.sqlserver.BlockingSnapshotIT
    Modifier and Type
    Constant Field
    Value
    private static final int
    1
  • io.debezium.connector.sqlserver.IncrementalSnapshotCollationSortOrderMismatchIT
    Modifier and Type
    Constant Field
    Value
    private static final int
    1
    private static final String
    "SQL_Latin1_General_CP1_CI_AS"
  • io.debezium.connector.sqlserver.IncrementalSnapshotIT
    Modifier and Type
    Constant Field
    Value
    private static final int
    1
  • io.debezium.connector.sqlserver.SnapshotIT
    Modifier and Type
    Constant Field
    Value
    private static final int
    500
    private static final int
    500
  • io.debezium.connector.sqlserver.SnapshotWithSelectOverridesIT
    Modifier and Type
    Constant Field
    Value
    private static final int
    10
  • io.debezium.connector.sqlserver.SqlServerConnectorIT
    Modifier and Type
    Constant Field
    Value
    public static final int
    0
  • io.debezium.connector.sqlserver.TablesWithoutPrimaryKeyIT
    Modifier and Type
    Constant Field
    Value
    private static final String
    "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
    "INSERT INTO t1 VALUES (1,10);INSERT INTO t2 VALUES (2,20);INSERT INTO t3 VALUES (3,30);"
  • io.debezium.connector.sqlserver.TablesWithUniqueIndexOnlyIT
    Modifier and Type
    Constant Field
    Value
    private static final String
    "CREATE TABLE t1 (key1 INT NOT NULL, key2 INT NOT NULL, data VARCHAR(255) NOT NULL, col4 INT NOT NULL);CREATE UNIQUE NONCLUSTERED INDEX indexa ON t1 (col4)CREATE UNIQUE NONCLUSTERED INDEX indexb ON t1 (key1, key2)"
    private static final String
    "CREATE TABLE t2 (key1 INT NOT NULL, key2 INT NOT NULL, data VARCHAR(255) NOT NULL, col4 INT NOT NULL);CREATE UNIQUE NONCLUSTERED INDEX indexb ON t2 (key1, key2)CREATE UNIQUE NONCLUSTERED INDEX indexa ON t2 (col4)"
    private static final String
    "INSERT INTO t1 VALUES (1, 10, \'data1\', 100);"