From 8eb8cb380cea1b6d6b32bc2fb8d26256fdd61140 Mon Sep 17 00:00:00 2001 From: Kevin H Wilson Date: Sun, 13 Oct 2024 15:25:36 -0400 Subject: [PATCH] fix hash aggregate test --- cpp/src/arrow/acero/hash_aggregate_test.cc | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/cpp/src/arrow/acero/hash_aggregate_test.cc b/cpp/src/arrow/acero/hash_aggregate_test.cc index 1e2975afc91b3..456ed57b00db0 100644 --- a/cpp/src/arrow/acero/hash_aggregate_test.cc +++ b/cpp/src/arrow/acero/hash_aggregate_test.cc @@ -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"],