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
Currently we are decoding a map into an array which means that each key/value pair is placed in its own map. This is not the desired behavior. A RecordBatch that is decoded into a map needs to put all the key/value pairs into the same map.
Component(s)
Swift
The text was updated successfully, but these errors were encountered:
…42246)
### Rationale for this change
Behavior of decoding a map currently changes based on the key type (String or not String)
### What changes are included in this PR?
Added method for handling map to ensure that all maps are decoded the same way.
### Are these changes tested?
Yes
* GitHub Issue: #42245
Authored-by: Alva Bandy <[email protected]>
Signed-off-by: Sutou Kouhei <[email protected]>
Describe the enhancement requested
Currently we are decoding a map into an array which means that each key/value pair is placed in its own map. This is not the desired behavior. A RecordBatch that is decoded into a map needs to put all the key/value pairs into the same map.
Component(s)
Swift
The text was updated successfully, but these errors were encountered: