| 54 | |
| 55 | template <typename ArrowType, typename TypeMessage, typename... A> |
| 56 | Result<std::pair<std::shared_ptr<DataType>, bool>> FromProtoImpl(const TypeMessage& type, |
| 57 | A&&... args) { |
| 58 | return std::make_pair(std::static_pointer_cast<DataType>( |
| 59 | std::make_shared<ArrowType>(std::forward<A>(args)...)), |
| 60 | IsNullable(type)); |
| 61 | } |
| 62 | |
| 63 | template <typename TypeMessage, typename... A> |
| 64 | Result<std::pair<std::shared_ptr<DataType>, bool>> FromProtoImpl( |
no test coverage detected