| 1909 | |
| 1910 | template <bool ignoreNullKeys> |
| 1911 | int32_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 | |
| 1926 | template <bool ignoreNullKeys> |
| 1927 | template <bool hasMatchFlags> |