Skip to content

Commit 0af6e1c

Browse files
authored
fix: memGetValues bug fix (openGemini#602)
Signed-off-by: lihanxue <[email protected]>
1 parent 215a341 commit 0af6e1c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

engine/mutable/table.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -767,7 +767,7 @@ func (t *MemTable) getSortedRecSafe(msName string, id uint64, tr util.TimeRange,
767767
}
768768

769769
chunk.SortRecordNoLock(hlp)
770-
var rec = writeRec.Copy(ascending, &tr, schema)
770+
var rec = chunk.WriteRec.rec.Copy(ascending, &tr, schema)
771771
chunk.Mu.Unlock()
772772
return rec
773773
}

0 commit comments

Comments
 (0)