| 33 | |
| 34 | template <typename InternalType> |
| 35 | int Encode(const InternalType& v, int encoded_byte_size, uint8_t* buffer, |
| 36 | parquet::Type::type physical_type){ |
| 37 | return ParquetPlainEncoder::Encode(v, encoded_byte_size, buffer); |
| 38 | } |
| 39 | |
| 40 | // Handle special case of encoding decimal types stored as BYTE_ARRAY, INT32, and INT64, |
| 41 | // since these are not implemented in Impala. |
no test coverage detected