luky116 commented on code in PR #771: URL: https://github.com/apache/incubator-seata-go/pull/771#discussion_r1957103361
########## pkg/datasource/sql/exec/at/insert_on_update_executor.go: ########## @@ -169,6 +169,9 @@ func (i *insertOnUpdateExecutor) buildBeforeImageSQL(insertStmt *ast.InsertStmt, for _, columnMeta := range index.Columns { columnName := columnMeta.ColumnName imageParameters, ok := paramMap[columnName] + if !ok { + imageParameters = paramMap[strings.ToLower(columnName)] Review Comment: 不同数据的默认大小写不一样,忽略大小写比较 -- 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: notifications-unsubscr...@seata.apache.org For queries about this service, please contact Infrastructure at: us...@infra.apache.org --------------------------------------------------------------------- To unsubscribe, e-mail: notifications-unsubscr...@seata.apache.org For additional commands, e-mail: notifications-h...@seata.apache.org