Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
  • Loading branch information
Wenbin1002 committed Jun 27, 2024
1 parent 78dbe3d commit ad2d676
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion pkg/vm/engine/tae/tables/txnentries/flushTableTail.go
Original file line number Diff line number Diff line change
Expand Up @@ -130,7 +130,7 @@ func (entry *flushTableTailEntry) addTransferPages() {
var writer *blockio.BlockWriter
writer, _ = blockio.NewBlockWriterNew(entry.rt.Fs.Service, name, 0, nil)
var duration time.Duration
start := time.Now()
var start time.Time
for i, mcontainer := range entry.transMappings.Mappings {
m := mcontainer.M
if len(m) == 0 {
Expand Down
2 changes: 1 addition & 1 deletion pkg/vm/engine/tae/tables/txnentries/mergeobjects.go
Original file line number Diff line number Diff line change
Expand Up @@ -101,7 +101,7 @@ func (entry *mergeObjectsEntry) prepareTransferPage() {
var writer *blockio.BlockWriter
writer, _ = blockio.NewBlockWriterNew(entry.rt.Fs.Service, name, 0, nil)
var duration time.Duration
start := time.Now()
var start time.Time
for j := 0; j < obj.BlockCnt(); j++ {
if len(entry.transMappings.Mappings[k].M) == 0 {
k++
Expand Down

0 comments on commit ad2d676

Please sign in to comment.