| 1323 | } |
| 1324 | |
| 1325 | void AssertTakeCAC(const std::shared_ptr<DataType>& type, |
| 1326 | const std::vector<std::string>& values, const std::string& indices, |
| 1327 | const std::vector<std::string>& expected) { |
| 1328 | ASSERT_OK_AND_ASSIGN(auto actual, TakeCAC(type, values, indices)); |
| 1329 | ValidateOutput(actual); |
| 1330 | AssertChunkedEqual(*ChunkedArrayFromJSON(type, expected), *actual.chunked_array()); |
| 1331 | } |
| 1332 | |
| 1333 | void AssertTakeCCC(const std::shared_ptr<DataType>& type, |
| 1334 | const std::vector<std::string>& values, |
no test coverage detected