()
| 163 | |
| 164 | #[tokio::test] |
| 165 | async fn cross_join() { |
| 166 | TestCase::new() |
| 167 | .with_query("select t1.*, t2.* from t t1 CROSS JOIN t t2") |
| 168 | .with_expected_errors(vec![ |
| 169 | "Resources exhausted: Additional allocation failed", |
| 170 | "with top memory consumers (across reservations) as:\n CrossJoinExec", |
| 171 | ]) |
| 172 | .with_memory_limit(1_000) |
| 173 | .run() |
| 174 | .await |
| 175 | } |
| 176 | |
| 177 | #[tokio::test] |
| 178 | async fn sort_merge_join_no_spill() { |
nothing calls this directly
no test coverage detected
searching dependent graphs…