| 63 | } |
| 64 | |
| 65 | absl::Status OnPostVisit(PlannerContext& context, |
| 66 | const cel::Expr& node) override { |
| 67 | if (context.GetSubplan(node).empty()) { |
| 68 | return absl::OkStatus(); |
| 69 | } |
| 70 | |
| 71 | return context.AddSubplanStep( |
| 72 | node, std::make_unique<InstrumentStep>(node.id(), instrumentation_)); |
| 73 | } |
| 74 | |
| 75 | private: |
| 76 | Instrumentation instrumentation_; |
nothing calls this directly
no test coverage detected