From e47c091b10f1a122110f0dfbee5356a9e863fe1e Mon Sep 17 00:00:00 2001 From: Ti Chi Robot Date: Tue, 4 Jun 2024 14:52:26 +0800 Subject: [PATCH] ticdc: Fix sql case error (#17700) (#17742) --- 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 4692c25f30ba0..205699207e798 100644 --- a/ticdc/ticdc-overview.md +++ b/ticdc/ticdc-overview.md @@ -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