| 42 | class MemTableWindowIterator : public ::hybridse::vm::RowIterator { |
| 43 | public: |
| 44 | MemTableWindowIterator(TimeEntries::Iterator* it, |
| 45 | ::fedb::storage::TTLType ttl_type, uint64_t expire_time, |
| 46 | uint64_t expire_cnt) |
| 47 | : it_(it), record_idx_(0), expire_value_(expire_time, expire_cnt, ttl_type), row_() {} |
| 48 | |
| 49 | ~MemTableWindowIterator() { delete it_; } |
| 50 |
nothing calls this directly
no outgoing calls
no test coverage detected