| 421 | Status FlushFinal(ExecResult* out) override { return action_.FlushFinal(out); } |
| 422 | |
| 423 | Status GetDictionary(std::shared_ptr<ArrayData>* out) override { |
| 424 | std::shared_ptr<NullArray> null_array; |
| 425 | if (seen_null_) { |
| 426 | null_array = std::make_shared<NullArray>(1); |
| 427 | } else { |
| 428 | null_array = std::make_shared<NullArray>(0); |
| 429 | } |
| 430 | *out = null_array->data(); |
| 431 | return Status::OK(); |
| 432 | } |
| 433 | |
| 434 | std::shared_ptr<DataType> value_type() const override { return type_; } |
| 435 |
no test coverage detected