Skip to content

Commit

Permalink
tests/integrationtest2: go on fixing the tests (pingcap#56859)
Browse files Browse the repository at this point in the history
  • Loading branch information
bb7133 authored Oct 28, 2024
1 parent 3c8f2f3 commit c550aae
Showing 1 changed file with 7 additions and 0 deletions.
7 changes: 7 additions & 0 deletions tests/integrationtest2/r/ticdc/cdc_integration.result
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
CREATE TABLE t3 (a INT PRIMARY KEY, b INT, UNIQUE KEY (b));
INSERT INTO t3 VALUES (1, 23);
INSERT INTO t3 VALUES (11, 23);
Error 1062 (23000): Duplicate entry '23' for key 't3.b'
use ticdc__cdc_integration;
INSERT INTO t3 VALUES (11, 23);
Error 1062 (23000): Duplicate entry '23' for key 't3.b'

0 comments on commit c550aae

Please sign in to comment.