Struct datafusion_expr::logical_plan::CrossJoin
source · pub struct CrossJoin {
pub left: Arc<LogicalPlan>,
pub right: Arc<LogicalPlan>,
pub schema: DFSchemaRef,
}Expand description
Apply Cross Join to two logical plans
Fields§
§left: Arc<LogicalPlan>Left input
right: Arc<LogicalPlan>Right input
schema: DFSchemaRefThe output schema, containing fields from the left and right inputs