| 115 | } |
| 116 | |
| 117 | void InsertPath(const FieldPosition& pos) { |
| 118 | const int64_t id = field_path_to_id.size(); |
| 119 | const auto pair = field_path_to_id.emplace(FieldPath(pos.path()), id); |
| 120 | DCHECK(pair.second); // was inserted |
| 121 | ARROW_UNUSED(pair); |
| 122 | } |
| 123 | }; |
| 124 | |
| 125 | DictionaryFieldMapper::DictionaryFieldMapper() : impl_(new Impl) {} |