MCPcopy Create free account
hub / github.com/apache/arrow / MergeTable

Method MergeTable

cpp/src/arrow/util/hashing.h:901–907  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

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
910template <typename T, typename Enable = void>

Callers

nothing calls this directly

Calls 3

GetOrInsertMethod · 0.95
OKFunction · 0.50
VisitValuesMethod · 0.45

Tested by

no test coverage detected