| 108 | } |
| 109 | |
| 110 | void ValidateSum( |
| 111 | const Datum input, Datum expected, |
| 112 | const ScalarAggregateOptions& options = ScalarAggregateOptions::Defaults()) { |
| 113 | ASSERT_OK_AND_ASSIGN(Datum result, Sum(input, options)); |
| 114 | AssertDatumsApproxEqual(expected, result, /*verbose=*/true); |
| 115 | } |
| 116 | |
| 117 | template <typename ArrowType> |
| 118 | void ValidateSum( |
nothing calls this directly
no test coverage detected