Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fixes Decimal's implementation of Ord #307

Merged
merged 2 commits into from
Sep 17, 2021
Merged

Fixes Decimal's implementation of Ord #307

merged 2 commits into from
Sep 17, 2021

Conversation

zslayton
Copy link
Contributor

Problems addressed:

  • Some cases did not scale the operands for comparison properly.
  • If both values were negative, only their magnitudes were
    considered.

Fixes #305.

By submitting this pull request, I confirm that my contribution is made under the terms of the Apache 2.0 license.

Problems addressed:
* Some cases did not scale the operands for comparison properly.
* If both values were negative, only their magnitudes were
  considered.

Fixes #305.
@zslayton zslayton requested review from almann and desaikd September 16, 2021 14:22
@codecov
Copy link

codecov bot commented Sep 16, 2021

Codecov Report

Merging #307 (73e59a7) into main (e2c7329) will decrease coverage by 0.00%.
The diff coverage is 100.00%.

Impacted file tree graph

@@            Coverage Diff             @@
##             main     #307      +/-   ##
==========================================
- Coverage   91.09%   91.08%   -0.01%     
==========================================
  Files          58       58              
  Lines        8421     8446      +25     
==========================================
+ Hits         7671     7693      +22     
- Misses        750      753       +3     
Impacted Files Coverage Δ
src/types/decimal.rs 89.70% <100.00%> (-0.39%) ⬇️

Continue to review full report at Codecov.

Legend - Click here to learn more
Δ = absolute <relative> (impact), ø = not affected, ? = missing data
Powered by Codecov. Last update e2c7329...73e59a7. Read the comment docs.

// This lets us compare 80 and 80, determining that the decimals are equal.
let mut scaled_coefficient: BigUint = d1.coefficient.magnitude().to_biguint().unwrap();
scaled_coefficient *= 10u64.pow(exponent_delta as u32);
Magnitude::BigUInt(scaled_coefficient).cmp(&d2.coefficient.magnitude())
Copy link
Contributor Author

Choose a reason for hiding this comment

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

There's not really a logic change here, but I've revised the variable names to be more accurate and added comments to try and explain what's going on.

Copy link
Contributor

Choose a reason for hiding this comment

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

Thanks for the clarification.


#[test]
fn test_decimal_eq() {
Copy link
Contributor Author

Choose a reason for hiding this comment

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

I replaced the monolithic test_decimal_eq and test_decimal_ord with #[rstest]-parameterized test functions.

let magnitude: BigUint = big_int_coefficient
.abs()
.to_biguint()
.expect("abs() would have prevented a negative number");
Copy link
Contributor Author

Choose a reason for hiding this comment

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

cargo fmt seems to have replaced this expect with an unwrap. I'm unsure why that's the preference, but I'm ok with it. 🤷

Copy link
Contributor

@desaikd desaikd left a comment

Choose a reason for hiding this comment

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

There's an unused import warning otherwise looks good. Thanks for adding all the comments!

@zslayton zslayton merged commit 29eef8c into main Sep 17, 2021
@zslayton zslayton deleted the decimal-cmp-fix branch September 17, 2021 15:18
Copy link
Contributor

@jobarr-amzn jobarr-amzn left a comment

Choose a reason for hiding this comment

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

LGTM- thank you for the clarifications and improved comments!

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

Decimal comparator is incorrect
4 participants