| 1146 | // TakeACC is never tested directly, so it is not defined here |
| 1147 | |
| 1148 | Result<Datum> TakeCAC(std::shared_ptr<ChunkedArray> values, |
| 1149 | std::shared_ptr<Array> indices) { |
| 1150 | return Take(Datum{std::move(values)}, Datum{std::move(indices)}); |
| 1151 | } |
| 1152 | |
| 1153 | Result<Datum> TakeCAC(const std::shared_ptr<DataType>& type, |
| 1154 | const std::vector<std::string>& values, const std::string& indices, |
no test coverage detected