| 3328 | } |
| 3329 | |
| 3330 | std::shared_ptr<DataType> dictionary(const std::shared_ptr<DataType>& index_type, |
| 3331 | const std::shared_ptr<DataType>& dict_type, |
| 3332 | bool ordered) { |
| 3333 | return std::make_shared<DictionaryType>(index_type, dict_type, ordered); |
| 3334 | } |
| 3335 | |
| 3336 | std::shared_ptr<Field> field(std::string name, std::shared_ptr<DataType> type, |
| 3337 | bool nullable, |
no outgoing calls