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
"Invalid schema while deserializing ScalarValue::List"
661
+
.to_string(),
662
+
));
659
663
};
660
664
661
-
let message = root_as_message(ipc_message.as_slice()).unwrap();
665
+
let message = root_as_message(ipc_message.as_slice()).map_err(|e| {
666
+
Error::General(format!(
667
+
"Error IPC message while deserializing ScalarValue::List: {e}"
668
+
))
669
+
})?;
670
+
let buffer = Buffer::from(arrow_data);
662
671
663
-
// TODO: Add comment to why adding 0 before arrow_data.
664
-
// This code is from https://github.com/apache/arrow-rs/blob/4320a753beaee0a1a6870c59ef46b59e88c9c323/arrow-ipc/src/reader.rs#L1670-L1674C45
0 commit comments