Skip to content

Commit

Permalink
fix ut
Browse files Browse the repository at this point in the history
  • Loading branch information
jiangxinmeng1 committed Dec 6, 2024
1 parent 50c4f5c commit 5c7da5d
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions pkg/vm/engine/tae/txn/txnimpl/replaystore.go
Original file line number Diff line number Diff line change
Expand Up @@ -198,7 +198,7 @@ func (store *replayTxnStore) replayAppendData(cmd *AppendCmd, observer wal.Repla
defer bat.Close()
if err = blk.GetObjectData().OnReplayAppendPayload(bat); err != nil || sarg != "" {
logutil.Infof("cmd %v\ncatalog: %v", cmd.String(), store.catalog.SimplePPString(3))
if err != ErrDebugReplay {
if sarg == "" {
panic(err)
}
}
Expand Down Expand Up @@ -246,7 +246,7 @@ func (store *replayTxnStore) replayAppend(cmd *updates.UpdateCmd, observer wal.R
}
if err = obj.GetObjectData().OnReplayAppend(appendNode); err != nil || sarg != "" {
logutil.Infof("cmd %v\ncatalog: %v", cmd.String(), store.catalog.SimplePPString(3))
if err != ErrDebugReplay {
if sarg == "" {
panic(err)
}
}
Expand Down

0 comments on commit 5c7da5d

Please sign in to comment.