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

Function join_by_expression

datafusion/core/tests/memory_limit/mod.rs:153–162  ·  view source on GitHub ↗
()

Source from the content-addressed store, hash-verified

151
152#[tokio::test]
153async fn join_by_expression() {
154 TestCase::new()
155 .with_query("select t1.* from t t1 JOIN t t2 ON t1.service != t2.service")
156 .with_expected_errors(vec![
157 "Resources exhausted: Additional allocation failed", "with top memory consumers (across reservations) as:\n NestedLoopJoinLoad[0]",
158 ])
159 .with_memory_limit(1_000)
160 .run()
161 .await
162}
163
164#[tokio::test]
165async fn cross_join() {

Callers

nothing calls this directly

Calls 5

newFunction · 0.85
runMethod · 0.45
with_memory_limitMethod · 0.45
with_expected_errorsMethod · 0.45
with_queryMethod · 0.45

Tested by

no test coverage detected

Used in the wild real call sites across dependent graphs

searching dependent graphs…