| 261 | } |
| 262 | |
| 263 | Status DictionaryMemo::AddDictionaryDelta(int64_t id, |
| 264 | const std::shared_ptr<ArrayData>& dictionary) { |
| 265 | ARROW_ASSIGN_OR_RAISE(auto it, impl_->FindDictionary(id)); |
| 266 | it->second.push_back(dictionary); |
| 267 | return Status::OK(); |
| 268 | } |
| 269 | |
| 270 | Result<bool> DictionaryMemo::AddOrReplaceDictionary( |
| 271 | int64_t id, const std::shared_ptr<ArrayData>& dictionary) { |
no test coverage detected