haohuaijin commented on code in PR #6438: URL: https://github.com/apache/arrow-rs/pull/6438#discussion_r1770789028
########## arrow-array/src/array/mod.rs: ########## @@ -1026,17 +1026,6 @@ mod tests { ); } - #[test] - fn test_memory_size_primitive_sliced() { - let arr = PrimitiveArray::<Int64Type>::from_iter_values(0..128); - let slice1 = arr.slice(0, 64); - let slice2 = arr.slice(64, 64); - - // both slices report the full buffer memory usage, even though the buffers are shared Review Comment: because current slice1 and sclic2 not return full buffer memory usage, so delete it. -- 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: github-unsubscr...@arrow.apache.org For queries about this service, please contact Infrastructure at: us...@infra.apache.org