MCPcopy Create free account
hub / github.com/bytedance/bolt / listJoinResults

Method listJoinResults

bolt/exec/HashTable.cpp:1911–1924  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

1909
1910template <bool ignoreNullKeys>
1911int32_t HashTable<ignoreNullKeys>::listJoinResults(
1912 JoinResultIterator& iter,
1913 bool includeMisses,
1914 folly::Range<vector_size_t*> inputRows,
1915 folly::Range<char**> hits,
1916 const BaseVector* matchFlags) {
1917 if (matchFlags) {
1918 return listJoinResultsInternal<true>(
1919 iter, includeMisses, inputRows, hits, matchFlags);
1920 } else {
1921 return listJoinResultsInternal<false>(
1922 iter, includeMisses, inputRows, hits, matchFlags);
1923 }
1924}
1925
1926template <bool ignoreNullKeys>
1927template <bool hasMatchFlags>

Callers 1

getOutputMethod · 0.80

Calls

no outgoing calls

Tested by

no test coverage detected