| 2082 | |
| 2083 | template <bool ignoreNullKeys> |
| 2084 | int32_t HashTable<ignoreNullKeys>::listNotProbedRows( |
| 2085 | RowsIterator* iter, |
| 2086 | int32_t maxRows, |
| 2087 | uint64_t maxBytes, |
| 2088 | char** rows) { |
| 2089 | return listRows<RowContainer::ProbeType::kNotProbed>( |
| 2090 | iter, maxRows, maxBytes, rows); |
| 2091 | } |
| 2092 | |
| 2093 | template <bool ignoreNullKeys> |
| 2094 | int32_t HashTable<ignoreNullKeys>::listProbedRows( |