| 2102 | |
| 2103 | template <bool ignoreNullKeys> |
| 2104 | int32_t HashTable<ignoreNullKeys>::listAllRows( |
| 2105 | RowsIterator* iter, |
| 2106 | int32_t maxRows, |
| 2107 | uint64_t maxBytes, |
| 2108 | char** rows) { |
| 2109 | return listRows<RowContainer::ProbeType::kAll>(iter, maxRows, maxBytes, rows); |
| 2110 | } |
| 2111 | |
| 2112 | template <> |
| 2113 | int32_t HashTable<false>::listNullKeyRows( |
no outgoing calls
no test coverage detected