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
- In Table.cs , the __vector_as_array() method calls __vector_len() to get the number of elements in the vector
- This element count is then directly passed as lenInBytes to ByteBuffer.ToArray(pos, len)
- In ByteBuffer.ToArray() , the ConvertBytesToTs() method checks if lenInBytes is a multiple of the size of type T
- When retrieving an int[] with 3 elements, the element count (3) is passed instead of the actual byte count (12), causing the alignment check to fail