| 535 | } |
| 536 | |
| 537 | bool IsTimeOrKeyColumn(col_index_t i) const { |
| 538 | DCHECK_LT(i, schema_->num_fields()); |
| 539 | return (i == time_col_index_) || std_has(key_col_index_, i); |
| 540 | } |
| 541 | |
| 542 | // Gets the latest row index, assuming the queue isn't empty |
| 543 | row_index_t GetLatestRow() const { return latest_ref_row_; } |
nothing calls this directly
no test coverage detected