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