| 393 | } |
| 394 | |
| 395 | Result<std::shared_ptr<ExecPlan>> ExecPlan::Make( |
| 396 | QueryOptions opts, ExecContext ctx, |
| 397 | std::shared_ptr<const KeyValueMetadata> metadata) { |
| 398 | return std::shared_ptr<ExecPlan>(new ExecPlanImpl{opts, ctx, std::move(metadata)}); |
| 399 | } |
| 400 | |
| 401 | Result<std::shared_ptr<ExecPlan>> ExecPlan::Make( |
| 402 | ExecContext ctx, std::shared_ptr<const KeyValueMetadata> metadata) { |
nothing calls this directly
no test coverage detected