alamb commented on pull request #9381: URL: https://github.com/apache/arrow/pull/9381#issuecomment-774258321
Looks like there is an error in the simd tests: https://github.com/apache/arrow/pull/9381/checks?check_run_id=1838559432 ``` ---- src/compute/kernels/window.rs - compute::kernels::window::shift (line 38) stdout ---- error[E0615]: attempted to take value of method `as_ref` on type `Arc<dyn Array>` --> src/compute/kernels/window.rs:47:16 | 12 | assert_eq!(res.as_ref, &expected) | ^^^^^^ method, not a field | help: use parentheses to call the method | 12 | assert_eq!(res.as_ref(), &expected) | ^^ ``` ---------------------------------------------------------------- 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. For queries about this service, please contact Infrastructure at: [email protected]
