Skip to content
This repository has been archived by the owner on Feb 18, 2024. It is now read-only.

Commit

Permalink
fix test_decimal256
Browse files Browse the repository at this point in the history
  • Loading branch information
TCeason committed Mar 1, 2023
1 parent b82d43a commit b99050b
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions tests/it/compute/sort/row/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -68,12 +68,12 @@ fn test_decimal256() {
let col = Int256Array::from_iter([
None,
Some(i256::from_words(i128::MIN, i128::MIN)),
Some(i256::from_words(0, -1)),
Some(i256::from_words(i128::MAX, -1)),
Some(i256::from_words(i128::MAX, 0)),
Some(i256::from_words(0, 46_i128)),
Some(i256::from_words(0, -1)),
Some(i256::from_words(5, 46_i128)),
Some(i256::from_words(i128::MAX, 0)),
Some(i256::from_words(i128::MAX, i128::MAX)),
Some(i256::from_words(i128::MAX, -1)),
])
.to(DataType::Decimal256(76, 7))
.to_boxed();
Expand Down

0 comments on commit b99050b

Please sign in to comment.