XieYingFa

Results 1 issues of XieYingFa

如果sql为:update mallcard.qst_mallcard_info t set t.amount = t.amount + 10 where t.card_no = '';加了别名t,在回滚时会报标识符无效,发现Seata的for update 语句在amount字段上加了双引号,如下图 ![0094126a7af4bc02e30a67167a56f502](https://github.com/apache/incubator-seata/assets/31722378/b6ca6a9c-dd52-4363-a579-ad3b091d4574) 如果sql为:update mallcard.qst_mallcard_info t set amount = amount + 10 where t.card_no = '';,则可以正常回滚 Environment:...

type: bug