()
| 98 | |
| 99 | #[test] |
| 100 | fn bare_reserved_is_err() { |
| 101 | let err = check_identifier("match").unwrap_err(); |
| 102 | assert!(matches!(err, SqlError::ReservedIdentifier { .. })); |
| 103 | } |
| 104 | |
| 105 | #[test] |
| 106 | fn quoted_lower_is_ok() { |
nothing calls this directly
no test coverage detected