ForestLH commented on code in PR #771: URL: https://github.com/apache/incubator-seata-go/pull/771#discussion_r1957338288
########## 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