This is an automated email from the ASF dual-hosted git repository.
jakevin pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/arrow-datafusion.git
The following commit(s) were added to refs/heads/main by this push:
new 82a809b71a minor: Remove mac m1 compilation for size_of_scalar test
(#7151)
82a809b71a is described below
commit 82a809b71a36ee8a0730d320cecdc66513a93c79
Author: Mustafa Akur <[email protected]>
AuthorDate: Tue Aug 1 10:52:58 2023 +0300
minor: Remove mac m1 compilation for size_of_scalar test (#7151)
* Remove mac m1 compilation for size_of_scalar test
* Update datafusion/common/src/scalar.rs
Co-authored-by: Andrew Lamb <[email protected]>
* Update datafusion/common/src/scalar.rs
Co-authored-by: jakevin <[email protected]>
---------
Co-authored-by: Andrew Lamb <[email protected]>
Co-authored-by: jakevin <[email protected]>
---
datafusion/common/src/scalar.rs | 2 ++
1 file changed, 2 insertions(+)
diff --git a/datafusion/common/src/scalar.rs b/datafusion/common/src/scalar.rs
index 4a7767023f..96ec5bc76f 100644
--- a/datafusion/common/src/scalar.rs
+++ b/datafusion/common/src/scalar.rs
@@ -4633,6 +4633,8 @@ mod tests {
assert_eq!(expected, data_type.try_into().unwrap())
}
+ // this test fails on aarch, so don't run it there
+ #[cfg(not(target_arch = "aarch64"))]
#[test]
fn size_of_scalar() {
// Since ScalarValues are used in a non trivial number of places,