kelindar / column

High-performance, columnar, in-memory store with bitmap indexing in Go
MIT License
1.44k stars 57 forks source link

large strings #94

Open roihe opened 1 year ago

roihe commented 1 year ago

if i do a table.Insert(func(r column.Row) error { r.SetString("name", "Alice"+RandStringBytes(70000)) return nil }) it results in a "runtime error: index out of range [75901] with length 70009". Is there a limit for large strings? Thank you

kelindar commented 1 year ago

Right, it's currently limited to 65K. It's probably not the best idea to store large strings in column anyway, not really designed for this at the moment.