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