Skip to content

Commit

Permalink
fix hash aggregate test
Browse files Browse the repository at this point in the history
  • Loading branch information
khwilson committed Oct 13, 2024
1 parent 2156906 commit 8eb8cb3
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions cpp/src/arrow/acero/hash_aggregate_test.cc
Original file line number Diff line number Diff line change
Expand Up @@ -1798,12 +1798,12 @@ TEST_P(GroupBy, SumMeanProductDecimal) {

AssertDatumsEqual(ArrayFromJSON(struct_({
field("key_0", int64()),
field("hash_sum", decimal128(3, 2)),
field("hash_sum", decimal256(3, 2)),
field("hash_mean", decimal128(3, 2)),
field("hash_mean", decimal256(3, 2)),
field("hash_product", decimal128(3, 2)),
field("hash_product", decimal256(3, 2)),
field("hash_sum", decimal128(38, 2)),
field("hash_sum", decimal256(76, 2)),
field("hash_mean", decimal128(38, 2)),
field("hash_mean", decimal256(76, 2)),
field("hash_product", decimal128(38, 2)),
field("hash_product", decimal256(76, 2)),
}),
R"([
[1, "4.25", "4.25", "2.13", "2.13", "3.25", "3.25"],
Expand Down

0 comments on commit 8eb8cb3

Please sign in to comment.