Struct datafusion_expr::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: DFSchemaRef
The output schema, containing fields from the left and right inputs