Skip to content

Commit

Permalink
ticdc: Fix sql case error (pingcap#17700) (pingcap#17742)
Browse files Browse the repository at this point in the history
  • Loading branch information
ti-chi-bot authored Jun 4, 2024
1 parent e4488b0 commit e47c091
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion ticdc/ticdc-overview.md
Original file line number Diff line number Diff line change
Expand Up @@ -129,7 +129,7 @@ Update t1 set b = 4 where b = 2;
TiCDC generates the following two SQL statements based on the data change information, and writes them to the downstream:

```sql
INSERT INTO `test.t1` (`A`,`B`) VALUES (1,1),(2,2),(3,3);
INSERT INTO `test.t1` (`A`,`B`) VALUES (1,2),(2,2),(3,3);
UPDATE `test`.`t1`
SET `A` = CASE
WHEN `A` = 1 THEN 1
Expand Down

0 comments on commit e47c091

Please sign in to comment.