| 1231 | |
| 1232 | template <typename ArrowType> |
| 1233 | void ValidateMean(const Array& input, Datum expected, |
| 1234 | const ScalarAggregateOptions& options) { |
| 1235 | ASSERT_OK_AND_ASSIGN(Datum result, Mean(input, options, nullptr)); |
| 1236 | AssertDatumsApproxEqual(expected, result, /*verbose=*/true); |
| 1237 | } |
| 1238 | |
| 1239 | template <typename ArrowType> |
| 1240 | void ValidateMean( |
nothing calls this directly
no test coverage detected