TeslaCN commented on issue #23964: URL: https://github.com/apache/shardingsphere/issues/23964#issuecomment-1564554135
> i meet this case using node typeorm update ,too > > it seems like pg's parameterMarkerIndex may not be in order as jdbc's treat > > (1)generated sql is like : `UPDATE "t_alert_rule" SET "alert_persons" = $2, "update_time" = CURRENT_TIMESTAMP WHERE "id" IN ($1) RETURNING "update_time” ` > > (2) and parseExecutor convert it to jdbc style `UPDATE "t_alert_rule" SET "alert_persons" = ?, "update_time" = CURRENT_TIMESTAMP WHERE "id" IN (?) RETURNING "update_time” ` > > (3) parameters readed in 'bind' is json: ['test'] bigint : 1 > > eventually the actual parameters is miss match with index; re order the actual parameters' order in 'bind' phase may works > > @TeslaCN I think this is another issue. -- 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]
