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

Function test_left_join_1k

datafusion/core/tests/fuzz_cases/join_fuzz.rs:124–135  ·  view source on GitHub ↗
()

Source from the content-addressed store, hash-verified

122
123#[tokio::test]
124async fn test_left_join_1k() {
125 for (left_extra, right_extra) in [(true, true), (false, true), (true, false)] {
126 JoinFuzzTestCase::new(
127 make_staggered_batches_i32(1000, left_extra),
128 make_staggered_batches_i32(1000, right_extra),
129 JoinType::Left,
130 None,
131 )
132 .run_test(&[HjSmj, NljHj], false)
133 .await
134 }
135}
136
137#[tokio::test]
138async fn test_left_join_1k_filtered() {

Callers

nothing calls this directly

Calls 3

newFunction · 0.85
run_testMethod · 0.45

Tested by

no test coverage detected

Used in the wild real call sites across dependent graphs

searching dependent graphs…