You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
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
The text was updated successfully, but these errors were encountered:
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.
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
The text was updated successfully, but these errors were encountered: