mirror of
https://github.com/featurebasedb/featurebase.git
synced 2026-09-07 09:05:55 +00:00
fmt -s fragment_internal_test
This commit is contained in:
parent
f8569102f5
commit
70e9da3b75
1 changed files with 2 additions and 2 deletions
|
|
@ -1579,13 +1579,13 @@ func calcExpected(inputs ...[]uint64) [][]uint64 {
|
|||
|
||||
// initialize ret slice
|
||||
ret := make([][]uint64, maxrow+1)
|
||||
for i, _ := range ret {
|
||||
for i := range ret {
|
||||
ret[i] = make([]uint64, 0)
|
||||
}
|
||||
|
||||
// populate ret slices from rows map
|
||||
for row, vals := range rows {
|
||||
for val, _ := range vals {
|
||||
for val := range vals {
|
||||
ret[row] = append(ret[row], val)
|
||||
}
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue