Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 1 addition & 6 deletions datafusion/common/src/scalar.rs
Original file line number Diff line number Diff line change
Expand Up @@ -2575,12 +2575,7 @@ mod tests {
// The alignment requirements differ across architectures and
// thus the size of the enum appears to as as well

let expected = match cfg!(target_arch = "aarch64") {
true => 64,
false => 48,
};

assert_eq!(std::mem::size_of::<ScalarValue>(), expected);
assert_eq!(std::mem::size_of::<ScalarValue>(), 48);
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

fascinating -- perhaps rust has improved it support for aarch64

}

#[test]
Expand Down