| 82 | } |
| 83 | |
| 84 | ESupportedArrowDataType Get(const ArrowSchema& schema) const { |
| 85 | auto* res = SimpleMapping_.FindPtr(schema.format); |
| 86 | Y_ENSURE(res, "Unsupported Arrow format: '" << schema.format << "'"); |
| 87 | return *res; |
| 88 | } |
| 89 | |
| 90 | private: |
| 91 | THashMap<TStringBuf, ESupportedArrowDataType> SimpleMapping_; |
no test coverage detected