| 54 | class SimpleFunctionTest : public functions::test::FunctionBaseTest { |
| 55 | protected: |
| 56 | VectorPtr arraySum(const std::vector<std::vector<int64_t>>& data) { |
| 57 | return makeFlatVector<int64_t>(data.size(), [&](auto row) { |
| 58 | return std::accumulate(data[row].begin(), data[row].end(), 0); |
| 59 | }); |
| 60 | } |
| 61 | |
| 62 | template <typename T> |
| 63 | struct CallNullFreeFuncVoidOut { |
nothing calls this directly
no test coverage detected