[[acero::export]]
| 199 | |
| 200 | // [[acero::export]] |
| 201 | std::shared_ptr<arrow::Table> Table__from_ExecPlanReader( |
| 202 | const std::shared_ptr<arrow::RecordBatchReader>& reader) { |
| 203 | auto result = RunWithCapturedRIfPossible<std::shared_ptr<arrow::Table>>( |
| 204 | [&]() { return reader->ToTable(); }); |
| 205 | |
| 206 | return ValueOrStop(result); |
| 207 | } |
| 208 | |
| 209 | // [[acero::export]] |
| 210 | std::shared_ptr<acero::ExecPlan> ExecPlanReader__Plan( |
no test coverage detected