(#[case] sql: &str)
| 773 | )] |
| 774 | #[test] |
| 775 | fn update_column_does_not_exist(#[case] sql: &str) { |
| 776 | let err = logical_plan(sql).expect_err("query should have failed"); |
| 777 | assert_field_not_found(err, "doesnotexist"); |
| 778 | } |
| 779 | |
| 780 | #[test] |
| 781 | fn plan_delete() { |
nothing calls this directly
no test coverage detected
searching dependent graphs…