rspears74 commented on issue #8975: URL: https://github.com/apache/arrow-datafusion/issues/8975#issuecomment-1919916273
Nice! The only difference between my `to_scalarvalue_list` function and the `array_into_list_array` function is the way the `OffsetBuffer` is constructed: `OffsetBuffer::new_zeroed(arr.len())` (`to_scalarvalue_list`) vs `OffsetBuffer::from_lengths([arr.len()])` (`array_into_list_array`) This should get me around my blocker. I may have been using the `OffsetBuffer` incorrectly here, but I'm still wondering why it suddenly stopped working in DF 34. -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: [email protected] For queries about this service, please contact Infrastructure at: [email protected]
