Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
jiangxinmeng1 committed Nov 6, 2024
1 parent dc7cb93 commit d8cb72a
Showing 1 changed file with 8 additions and 1 deletion.
9 changes: 8 additions & 1 deletion pkg/vm/engine/tae/txn/txnimpl/table.go
Original file line number Diff line number Diff line change
Expand Up @@ -484,7 +484,14 @@ func (tbl *txnTable) recurTransferDelete(
//check if the target block had been soft deleted and committed before ts,
//if not, transfer the deletes to the target block,
//otherwise recursively transfer the deletes to the next target block.
err := tbl.store.warChecker.checkOne(newID, ts)
obj, err := tbl.store.warChecker.CacheGet(newID.DbID, newID.TableID, newID.ObjectID(), false)
if err != nil {
return err
}
err = readWriteConfilictCheck(
obj,
ts,
)
if err == nil {
pkVec := tbl.store.rt.VectorPool.Small.GetVector(pkType)
pkVec.Append(pk, false)
Expand Down

0 comments on commit d8cb72a

Please sign in to comment.