| 110 | } |
| 111 | |
| 112 | bytedance::bolt::RowVectorPtr OrderBy::getOutput() { |
| 113 | if (finished_ || !noMoreInput_) { |
| 114 | return nullptr; |
| 115 | } |
| 116 | finished_ = true; |
| 117 | bytedance::bolt::RowVectorPtr output = nullptr; |
| 118 | if (outputTable_) { |
| 119 | stream_.synchronize(); |
| 120 | output = toBoltRowVector(outputTable_->view(), pool(), stream_); |
| 121 | output->setType(outputType_); |
| 122 | } |
| 123 | |
| 124 | recordInterOpStats(*this, interOpStats_); |
| 125 | return output; |
| 126 | } |
| 127 | |
| 128 | } // namespace bolt::cudf::exec |
nothing calls this directly
no test coverage detected