()
| 220 | |
| 221 | #[test] |
| 222 | fn parse_set_equals() { |
| 223 | let (k, v) = parse_set_command("SET client_encoding = 'UTF8'").unwrap(); |
| 224 | assert_eq!(k, "client_encoding"); |
| 225 | assert_eq!(v, "UTF8"); |
| 226 | } |
| 227 | |
| 228 | #[test] |
| 229 | fn parse_set_to() { |
nothing calls this directly
no test coverage detected