| 49 | } |
| 50 | |
| 51 | void WindowPartition::extractColumn( |
| 52 | int32_t columnIndex, |
| 53 | folly::Range<const vector_size_t*> rowNumbers, |
| 54 | vector_size_t resultOffset, |
| 55 | const VectorPtr& result, |
| 56 | bool exactSize) const { |
| 57 | RowContainer::extractColumn( |
| 58 | partition_.data(), |
| 59 | rowNumbers, |
| 60 | columns_[columnIndex], |
| 61 | resultOffset, |
| 62 | result, |
| 63 | exactSize); |
| 64 | } |
| 65 | |
| 66 | void WindowPartition::extractColumn( |
| 67 | int32_t columnIndex, |
nothing calls this directly
no test coverage detected