(
&self,
left: LogicalPlan,
right: LogicalPlan,
)
| 103 | } |
| 104 | |
| 105 | fn parse_cross_join( |
| 106 | &self, |
| 107 | left: LogicalPlan, |
| 108 | right: LogicalPlan, |
| 109 | ) -> Result<LogicalPlan> { |
| 110 | LogicalPlanBuilder::from(left).cross_join(right)?.build() |
| 111 | } |
| 112 | |
| 113 | fn parse_join( |
| 114 | &self, |
no test coverage detected