Skip to content

Commit

Permalink
update
Browse files Browse the repository at this point in the history
  • Loading branch information
jiangxinmeng1 committed Dec 6, 2024
1 parent 5c7da5d commit f10f149
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 3 deletions.
2 changes: 1 addition & 1 deletion pkg/vm/engine/tae/txn/txnimpl/appendcmd.go
Original file line number Diff line number Diff line change
Expand Up @@ -115,7 +115,7 @@ func (c *AppendCmd) String() string {
return s
}
func (c *AppendCmd) VerboseString() string {
s := fmt.Sprintf("CmdName=InsertNode;ID=%d;TS=%v;Dests=", c.ID, c.Ts)
s := fmt.Sprintf("CmdName=InsertNode;ID=%d;TS=%d;Dests=", c.ID, c.Ts)
for _, info := range c.Infos {
s = fmt.Sprintf("%s%s", s, info.String())
}
Expand Down
6 changes: 4 additions & 2 deletions pkg/vm/engine/tae/txn/txnimpl/replaystore.go
Original file line number Diff line number Diff line change
Expand Up @@ -115,9 +115,11 @@ func (store *replayTxnStore) prepareCmd(txncmd txnif.TxnCmd) {
*catalog.EntryCommand[*catalog.MetadataMVCCNode, *catalog.BlockNode]:
store.catalog.ReplayCmd(txncmd, store.dataFactory, store.Observer)
case *AppendCmd:
store.replayAppendData(cmd, store.Observer)
store.replayAppendData(
cmd, store.Observer)
case *updates.UpdateCmd:
store.replayDataCmds(cmd, store.Observer)
store.replayDataCmds(
cmd, store.Observer)
}
}

Expand Down

0 comments on commit f10f149

Please sign in to comment.