| 899 | |
| 900 | public: |
| 901 | Status MergeTable(const BinaryMemoTable& other_table) { |
| 902 | other_table.VisitValues(0, [this](std::string_view other_value) { |
| 903 | int32_t unused; |
| 904 | ARROW_DCHECK_OK(this->GetOrInsert(other_value, &unused)); |
| 905 | }); |
| 906 | return Status::OK(); |
| 907 | } |
| 908 | }; |
| 909 | |
| 910 | template <typename T, typename Enable = void> |
nothing calls this directly
no test coverage detected