()
| 182 | |
| 183 | #[test] |
| 184 | fn distribute_by() -> Result<()> { |
| 185 | // regression test for https://github.com/apache/datafusion/issues/3234 |
| 186 | let sql = "SELECT col_int32, col_utf8 FROM test DISTRIBUTE BY (col_utf8)"; |
| 187 | let plan = test_sql(sql)?; |
| 188 | |
| 189 | assert_snapshot!( |
| 190 | format!("{plan}"), |
| 191 | @r" |
| 192 | Repartition: DistributeBy(test.col_utf8) |
| 193 | TableScan: test projection=[col_int32, col_utf8] |
| 194 | " |
| 195 | ); |
| 196 | Ok(()) |
| 197 | } |
| 198 | |
| 199 | #[test] |
| 200 | fn semi_join_with_join_filter() -> Result<()> { |
nothing calls this directly
no test coverage detected
searching dependent graphs…