| 182 | |
| 183 | template <typename ThriftType> |
| 184 | inline static ApiTypeRawEnum LoadRaw(const ThriftType* in) { |
| 185 | static_assert(sizeof(ApiTypeEnum) == sizeof(ThriftType), |
| 186 | "parquet type should always be the same size as thrift type"); |
| 187 | return static_cast<ApiTypeRawEnum>(LoadEnumRaw(in)); |
| 188 | } |
| 189 | |
| 190 | template <typename ThriftType> |
| 191 | inline static ApiTypeEnum Load(const ThriftType* in) { |
nothing calls this directly
no test coverage detected