Return the counts corresponding the MemoTable keys.
| 124 | |
| 125 | // Return the counts corresponding the MemoTable keys. |
| 126 | Status FlushFinal(ExecResult* out) { |
| 127 | std::shared_ptr<ArrayData> result; |
| 128 | RETURN_NOT_OK(count_builder_.FinishInternal(&result)); |
| 129 | out->value = std::move(result); |
| 130 | return Status::OK(); |
| 131 | } |
| 132 | |
| 133 | template <class Index> |
| 134 | void ObserveNullFound(Index index) { |
nothing calls this directly
no test coverage detected