| 536 | }; |
| 537 | |
| 538 | bool IsDictionaryReadSupported(const ArrowType& type) { |
| 539 | // Only supported currently for BYTE_ARRAY types |
| 540 | return type.id() == ::arrow::Type::BINARY || type.id() == ::arrow::Type::STRING; |
| 541 | } |
| 542 | |
| 543 | // ---------------------------------------------------------------------- |
| 544 | // Schema logic |
no test coverage detected