HCTzz opened a new issue #13783: URL: https://github.com/apache/shardingsphere/issues/13783
Which version of ShardingSphere did you use? 5.0.0 or 4.1.1 Which project did you use? ShardingSphere-JDBC or ShardingSphere-Proxy? ShardingSphere-JDBC Expected behavior Seata transaction should work as expected. Actual behavior commit or rollback NPE  steps to Reproduce the issue service A not use shardingSphere-JDBC @GlobalTransactional public void test() { Test wip = new Test(); wip.setId("653672951811678208"); wip.setOpCode("gx001"); wip.setRotaId("1234"); testMngService.updateWip(wip);//dubbo service B } service B use shardingSphere-JDBC @Transactional @ShardingSphereTransactionType(TransactionType.BASE) public void updateWip(Wip wip,String userName) { QueryWrapper<Test> queryWrapper = new QueryWrapper<>(); queryWrapper.eq("PK_ID",wip.getId()); queryWrapper.eq("OP_CODE",wip.getOpCode()); wipDao.update(wip,queryWrapper); }    Hope to provide solutions -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: [email protected] For queries about this service, please contact Infrastructure at: [email protected]
