Skip to content

Commit

Permalink
Fix build on non-64-bit systems
Browse files Browse the repository at this point in the history
  • Loading branch information
flowrean committed Aug 17, 2020
1 parent 1bfa857 commit 939948d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion cmd/in_memory_csv.go
Original file line number Diff line number Diff line change
Expand Up @@ -636,7 +636,7 @@ func (scs *StringColumnStats) CalculateAllStats() {
}

func (scs *StringColumnStats) CalculateMaxLength() {
scs.maxLength = math.MinInt64
scs.maxLength = -1
for _, elem := range scs.array {
if len(elem) > scs.maxLength {
scs.maxLength = len(elem)
Expand Down

0 comments on commit 939948d

Please sign in to comment.