| 33 | explicit IgnoringConsumer(size_t tag) : tag_{tag} {} |
| 34 | |
| 35 | arrow::Status Init(const std::shared_ptr<arrow::Schema>& schema, |
| 36 | ac::BackpressureControl* backpressure_control, |
| 37 | ac::ExecPlan* plan) override { |
| 38 | return arrow::Status::OK(); |
| 39 | } |
| 40 | |
| 41 | arrow::Status Consume(cp::ExecBatch batch) override { |
| 42 | // Consume a batch of data |
no test coverage detected