Wrap this node in a LogicalPlan::Extension.
(self)
| 486 | |
| 487 | /// Wrap this node in a LogicalPlan::Extension. |
| 488 | fn into_plan(self) -> LogicalPlan { |
| 489 | LogicalPlan::Extension(Extension { |
| 490 | node: Arc::new(self), |
| 491 | }) |
| 492 | } |
| 493 | } |
| 494 | |
| 495 | impl UserDefinedLogicalNodeCore for TableSamplePlanNode { |
no test coverage detected