0
0

bump up buffer size

This commit is contained in:
Marty Schoch 2015-10-06 16:45:38 -04:00
parent 71cbb13e07
commit e28eb749d7

View File

@ -120,7 +120,7 @@ func GetRowBuffer() []byte {
if rb, ok := rowBufferPool.Get().([]byte); ok { if rb, ok := rowBufferPool.Get().([]byte); ok {
return rb return rb
} else { } else {
return make([]byte, 2048) return make([]byte, 4096)
} }
} }