()
| 151 | |
| 152 | #[tokio::test] |
| 153 | async 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] |
| 165 | async fn cross_join() { |
nothing calls this directly
no test coverage detected
searching dependent graphs…