| 271 | } |
| 272 | |
| 273 | void AssertVarLengthBinary(const ::arrow::Array& values) { |
| 274 | if (!::arrow::is_base_binary_like(values.type_id()) && |
| 275 | !::arrow::is_binary_view_like(values.type_id())) { |
| 276 | throw ParquetException("Only binary-like data supported"); |
| 277 | } |
| 278 | } |
| 279 | |
| 280 | template <> |
| 281 | inline void PlainEncoder<ByteArrayType>::Put(const ::arrow::Array& values) { |
no test coverage detected