mirror of
https://github.com/featurebasedb/featurebase.git
synced 2026-08-28 10:54:59 +00:00
fixup explanatory comment
This commit is contained in:
parent
7b0d4d75b4
commit
b2ec5e373e
1 changed files with 1 additions and 1 deletions
|
|
@ -3485,7 +3485,7 @@ func readWithRuns(b *Bitmap, data []byte, pos int, keyN uint32) {
|
|||
runCount := binary.LittleEndian.Uint16(data[pos : pos+runCountHeaderSize])
|
||||
c.runs = (*[0xFFFFFFF]interval16)(unsafe.Pointer(&data[pos+runCountHeaderSize]))[:runCount]
|
||||
|
||||
for o := range c.runs { //need to convert to start:end vs start:length :(
|
||||
for o := range c.runs { // must convert from start:length to start:end :(
|
||||
c.runs[o].last = c.runs[o].start + c.runs[o].last
|
||||
}
|
||||
pos += int((runCount * interval16Size) + runCountHeaderSize)
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue