()
| 808 | |
| 809 | #[test] |
| 810 | fn select_column_does_not_exist() { |
| 811 | let sql = "SELECT doesnotexist FROM person"; |
| 812 | let err = logical_plan(sql).expect_err("query should have failed"); |
| 813 | assert_field_not_found(err, "doesnotexist"); |
| 814 | } |
| 815 | |
| 816 | #[test] |
| 817 | fn select_repeated_column() { |
nothing calls this directly
no test coverage detected
searching dependent graphs…