| 1191 | |
| 1192 | template <typename ArrowType> |
| 1193 | void ValidateMean(const Array& input, Datum expected, |
| 1194 | const ScalarAggregateOptions& options) { |
| 1195 | ASSERT_OK_AND_ASSIGN(Datum result, Mean(input, options, nullptr)); |
| 1196 | AssertDatumsApproxEqual(expected, result, /*verbose=*/true); |
| 1197 | } |
| 1198 | |
| 1199 | template <typename ArrowType> |
| 1200 | void ValidateMean( |
nothing calls this directly
no test coverage detected