| 286 | } |
| 287 | |
| 288 | Result<Future<>> operator()() override { |
| 289 | return fragment |
| 290 | ->InspectFragment(node->options_.format_options, |
| 291 | node->plan_->query_context()->exec_context()) |
| 292 | .Then([this](const std::shared_ptr<InspectedFragment>& inspected_fragment) { |
| 293 | return BeginScan(inspected_fragment); |
| 294 | }); |
| 295 | } |
| 296 | |
| 297 | std::string_view name() const override { return name_; } |
| 298 |
nothing calls this directly
no test coverage detected