SteveLauC
SteveLauC
BTW, #1695 has a good test, can we port it to this PR?
> Cannot reproduce aarch64 test errors on real hardware (Radxa Rock 5B, RK3588, rustc 1.70.0, Linux 5.10.110-20-rockchip) I think I will set up a Linux VM on my m1 Mac...
> I think I will set up a Linux VM on my m1 Mac to give it a test. Sorry for the late reply, I tested it in a aarch64...
The CI is still failing due to an unused import, let me give it a fix:)
This is kinda easy to implement? With a corrupted parquet file, trying to read it would result in: ```rust thread 'main' panicked at 'called `Result::unwrap()` on an `Err` value: General("Invalid...
Yes, this is a breaking change. I will try to fire up a NetBSD VM to test the current APIs.
Hi, guys, I just have NetBSD installed (including Rust toolchain and the GCC compiler), so I am ready to test the existing bindings.  But I may...
Though EA is not enabled, I still tested the following code snippet: ```rust use libc::{__errno, c_char, c_void, lsetxattr, perror, fremovexattr, setxattr}; use std::{ ptr::null_mut, os::unix::io::AsRawFd, fs::File, }; fn test_setxattr() {...
> [NetBSD 10 will be the first official release with full extended attribute support in FFS](https://mail-index.netbsd.org/tech-kern/2022/05/24/msg028105.html) If we would like to test these bindings further, we have to wait for...
> I find it very surprising that From and From are supported, but FromStr or TryFrom impls are not. This behavior, is still present with the latest version of clap...