Skip to content

Commit 939948d

Browse files
committed
Fix build on non-64-bit systems
1 parent 1bfa857 commit 939948d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

cmd/in_memory_csv.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -636,7 +636,7 @@ func (scs *StringColumnStats) CalculateAllStats() {
636636
}
637637

638638
func (scs *StringColumnStats) CalculateMaxLength() {
639-
scs.maxLength = math.MinInt64
639+
scs.maxLength = -1
640640
for _, elem := range scs.array {
641641
if len(elem) > scs.maxLength {
642642
scs.maxLength = len(elem)

0 commit comments

Comments
 (0)