| 1093 | // error fallback |
| 1094 | template <typename To> |
| 1095 | Result<std::shared_ptr<Scalar>> CastImpl(const Scalar& from, |
| 1096 | std::shared_ptr<DataType> to_type) { |
| 1097 | return Status::NotImplemented("casting scalars of type ", *from.type, " to type ", |
| 1098 | *to_type); |
| 1099 | } |
| 1100 | |
| 1101 | // numeric to numeric |
| 1102 | template <typename To, typename From> |
nothing calls this directly
no test coverage detected