Skip to content

Commit

Permalink
update test after merge
Browse files Browse the repository at this point in the history
  • Loading branch information
crazycs520 committed Aug 29, 2018
1 parent c7b2301 commit 1e8a9f0
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions util/chunk/chunk_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -262,9 +262,9 @@ func newChunkWithInitCap(cap int, elemLen ...int) *Chunk {
chk := &Chunk{}
for _, l := range elemLen {
if l > 0 {
chk.addFixedLenColumn(l, cap)
chk.columns = append(chk.columns, newFixedLenColumn(l, cap))
} else {
chk.addVarLenColumn(cap)
chk.columns = append(chk.columns, newVarLenColumn(cap, nil))
}
}
return chk
Expand Down

0 comments on commit 1e8a9f0

Please sign in to comment.