| 2092 | |
| 2093 | template <bool ignoreNullKeys> |
| 2094 | int32_t HashTable<ignoreNullKeys>::listProbedRows( |
| 2095 | RowsIterator* iter, |
| 2096 | int32_t maxRows, |
| 2097 | uint64_t maxBytes, |
| 2098 | char** rows) { |
| 2099 | return listRows<RowContainer::ProbeType::kProbed>( |
| 2100 | iter, maxRows, maxBytes, rows); |
| 2101 | } |
| 2102 | |
| 2103 | template <bool ignoreNullKeys> |
| 2104 | int32_t HashTable<ignoreNullKeys>::listAllRows( |