column icon indicating copy to clipboard operation
column copied to clipboard

large strings

Open roihe opened this issue 2 years ago • 1 comments

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

roihe avatar Jul 06 '23 19:07 roihe

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.

kelindar avatar Oct 13 '23 19:10 kelindar