This repository has been archived by the owner on Feb 18, 2024. It is now read-only.
MutableUtf8Array offsets bug #1256
Labels
bug
Something isn't working
no-changelog
Issues whose changes are covered by a PR and thus should not be shown in the changelog
When new MutableUtf8Array is created, it sets offsets to default 0.
But when creating Array from the MutableArray, it removes the offsets, including the initial offset 0.
And if you want to push a new value after this, it will not add back the initial offset 0, but the size of the new value.
Additionally, if the first value is a null value, it will be an error because it will try to get the last offset which is a None value.
The text was updated successfully, but these errors were encountered: