()
| 2339 | |
| 2340 | #[test] |
| 2341 | fn plan_builder_empty_name() { |
| 2342 | let schema = employee_schema(); |
| 2343 | let projection = None; |
| 2344 | let err = |
| 2345 | LogicalPlanBuilder::scan("", table_source(&schema), projection).unwrap_err(); |
| 2346 | assert_snapshot!( |
| 2347 | err.strip_backtrace(), |
| 2348 | @"Error during planning: table_name cannot be empty" |
| 2349 | ); |
| 2350 | } |
| 2351 | |
| 2352 | #[test] |
| 2353 | fn plan_builder_sort() -> Result<()> { |
nothing calls this directly
no test coverage detected
searching dependent graphs…