From d067aa5d7904e8e43fc37d1aaddeb7b5b2f834ae Mon Sep 17 00:00:00 2001 From: hongyunyan <649330952@qq.com> Date: Fri, 31 May 2024 16:03:42 +0800 Subject: [PATCH] update --- ticdc/ticdc-overview.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ticdc/ticdc-overview.md b/ticdc/ticdc-overview.md index efc6911015eae..5960e4c8190e3 100644 --- a/ticdc/ticdc-overview.md +++ b/ticdc/ticdc-overview.md @@ -130,7 +130,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