f787421f82
- 添加txFailed标志跟踪事务内的SQL错误状态 - 在事务模式下遇到SQL错误时立即标记事务失败并阻止重试 - 修改Action方法确保SQL出错时强制回滚事务 - 为事务失败场景添加完整的单元测试覆盖 - 防止在事务已回滚的情况下继续执行后续操作导致数据不一致
105 lines
2.2 KiB
Go
105 lines
2.2 KiB
Go
package db
|
|
|
|
import (
|
|
"fmt"
|
|
"sync"
|
|
"sync/atomic"
|
|
)
|
|
|
|
var savepointCounter uint64
|
|
|
|
// Action 事务操作
|
|
// 如果 action 返回 true 则提交事务;返回 false 则回滚
|
|
// 测试模式下(testTx != nil),使用 SAVEPOINT 代替真事务,确保嵌套事务不会绕过外层测试事务
|
|
func (that *HoTimeDB) Action(action func(db HoTimeDB) (isSuccess bool)) (isSuccess bool) {
|
|
db := HoTimeDB{
|
|
DB: that.DB,
|
|
ContextBase: that.ContextBase,
|
|
DBName: that.DBName,
|
|
HoTimeCache: that.HoTimeCache,
|
|
Log: that.Log,
|
|
Type: that.Type,
|
|
Prefix: that.Prefix,
|
|
LastQuery: that.LastQuery,
|
|
LastData: that.LastData,
|
|
ConnectFunc: that.ConnectFunc,
|
|
LastErr: that.LastErr,
|
|
limit: that.limit,
|
|
Tx: that.Tx,
|
|
SlaveDB: that.SlaveDB,
|
|
Mode: that.Mode,
|
|
Dialect: that.Dialect,
|
|
mu: sync.RWMutex{},
|
|
limitMu: sync.Mutex{},
|
|
testTx: that.testTx,
|
|
testMu: that.testMu,
|
|
}
|
|
|
|
txFailed := false
|
|
db.txFailed = &txFailed
|
|
|
|
if that.testTx != nil {
|
|
spName := fmt.Sprintf("sp_%d", atomic.AddUint64(&savepointCounter, 1))
|
|
if that.testMu != nil {
|
|
that.testMu.Lock()
|
|
}
|
|
_, _ = that.testTx.Exec("SAVEPOINT " + spName)
|
|
if that.testMu != nil {
|
|
that.testMu.Unlock()
|
|
}
|
|
db.Tx = that.testTx
|
|
isSuccess = action(db)
|
|
if txFailed || !isSuccess {
|
|
if that.testMu != nil {
|
|
that.testMu.Lock()
|
|
}
|
|
_, _ = that.testTx.Exec("ROLLBACK TO SAVEPOINT " + spName)
|
|
if that.testMu != nil {
|
|
that.testMu.Unlock()
|
|
}
|
|
return false
|
|
}
|
|
if that.testMu != nil {
|
|
that.testMu.Lock()
|
|
}
|
|
_, _ = that.testTx.Exec("RELEASE SAVEPOINT " + spName)
|
|
if that.testMu != nil {
|
|
that.testMu.Unlock()
|
|
}
|
|
return isSuccess
|
|
}
|
|
|
|
tx, err := db.Begin()
|
|
|
|
if err != nil {
|
|
that.LastErr.SetError(err)
|
|
return isSuccess
|
|
}
|
|
|
|
db.Tx = tx
|
|
|
|
isSuccess = action(db)
|
|
|
|
// SQL 出过错 → 事务必须回滚,不管回调返回什么
|
|
if txFailed {
|
|
_ = db.Tx.Rollback()
|
|
return false
|
|
}
|
|
|
|
if !isSuccess {
|
|
err = db.Tx.Rollback()
|
|
if err != nil {
|
|
that.LastErr.SetError(err)
|
|
return isSuccess
|
|
}
|
|
return isSuccess
|
|
}
|
|
|
|
err = db.Tx.Commit()
|
|
if err != nil {
|
|
that.LastErr.SetError(err)
|
|
return false
|
|
}
|
|
return true
|
|
}
|