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

Function test_right_join_1k

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

Source from the content-addressed store, hash-verified

150
151#[tokio::test]
152async fn test_right_join_1k() {
153 for (left_extra, right_extra) in [(true, true), (false, true), (true, false)] {
154 JoinFuzzTestCase::new(
155 make_staggered_batches_i32(1000, left_extra),
156 make_staggered_batches_i32(1000, right_extra),
157 JoinType::Right,
158 None,
159 )
160 .run_test(&[HjSmj, NljHj], false)
161 .await
162 }
163}
164
165#[tokio::test]
166async fn test_right_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…