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
I noticed that there was a small bug with how the DataType::Dictionary branch retrieves values - at the moment it uses the row index to directly access the dictionary's values array which means that in circumstances where the row index is greater than the length of the dictionary, we hit an out of bounds error.
A quick fix for this could be to access the keys first, get the row index and use that instead to extract values. We could also add a test to just check that this works and hits the happy path.