[[acero::export]]
| 210 | |
| 211 | // [[acero::export]] |
| 212 | std::shared_ptr<acero::ExecPlan> ExecPlanReader__Plan( |
| 213 | const std::shared_ptr<ExecPlanReader>& reader) { |
| 214 | if (reader->PlanStatus() == "PLAN_FINISHED") { |
| 215 | cpp11::stop("Can't extract ExecPlan from a finished ExecPlanReader"); |
| 216 | } |
| 217 | |
| 218 | return reader->Plan(); |
| 219 | } |
| 220 | |
| 221 | // [[acero::export]] |
| 222 | std::string ExecPlanReader__PlanStatus(const std::shared_ptr<ExecPlanReader>& reader) { |
no test coverage detected