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

Method hash_join

datafusion/core/tests/fuzz_cases/join_fuzz.rs:843–859  ·  view source on GitHub ↗
(&self)

Source from the content-addressed store, hash-verified

841 }
842
843 fn hash_join(&self) -> Arc<HashJoinExec> {
844 let (left, right) = self.left_right();
845 Arc::new(
846 HashJoinExec::try_new(
847 left,
848 right,
849 self.on_columns().clone(),
850 self.join_filter(),
851 &self.join_type,
852 None,
853 PartitionMode::Partitioned,
854 NullEquality::NullEqualsNothing,
855 false,
856 )
857 .unwrap(),
858 )
859 }
860
861 fn nested_loop_join(&self) -> Arc<NestedLoopJoinExec> {
862 let (left, right) = self.left_right();

Callers 1

run_testMethod · 0.80

Calls 5

newFunction · 0.85
left_rightMethod · 0.80
join_filterMethod · 0.80
cloneMethod · 0.45
on_columnsMethod · 0.45

Tested by

no test coverage detected