MCPcopy Create free account
hub / github.com/apache/datafusion / parse_cross_join

Method parse_cross_join

datafusion/sql/src/relation/join.rs:105–111  ·  view source on GitHub ↗
(
        &self,
        left: LogicalPlan,
        right: LogicalPlan,
    )

Source from the content-addressed store, hash-verified

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,

Callers 2

parse_relation_joinMethod · 0.80
parse_joinMethod · 0.80

Calls 2

cross_joinMethod · 0.80
buildMethod · 0.45

Tested by

no test coverage detected