Files
tidb/tests/integrationtest2/t/ticdc/cdc_integration.test

14 lines
286 B
Plaintext

# Test TiCDC replication
CREATE TABLE t3 (a INT PRIMARY KEY, b INT, UNIQUE KEY (b));
INSERT INTO t3 VALUES (1, 23);
--error 1062
INSERT INTO t3 VALUES (11, 23);
--replication_checkpoint
--connection downstream
use ticdc__cdc_integration;
--error 1062
INSERT INTO t3 VALUES (11, 23);