Skip to content

Commit

Permalink
fix scalar size test
Browse files Browse the repository at this point in the history
  • Loading branch information
comphead committed Mar 21, 2024
1 parent 87a166e commit ca629af
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion datafusion/common/src/scalar/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -4539,7 +4539,8 @@ mod tests {
// The alignment requirements differ across architectures and
// thus the size of the enum appears to as well

assert_eq!(std::mem::size_of::<ScalarValue>(), 48);
// The value can be changed depending on rust version
assert_eq!(std::mem::size_of::<ScalarValue>(), 64);
}

#[test]
Expand Down

0 comments on commit ca629af

Please sign in to comment.