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