()
| 227 | |
| 228 | #[test] |
| 229 | fn parse_set_to() { |
| 230 | let (k, v) = parse_set_command("SET search_path TO public").unwrap(); |
| 231 | assert_eq!(k, "search_path"); |
| 232 | assert_eq!(v, "public"); |
| 233 | } |
| 234 | |
| 235 | #[test] |
| 236 | fn parse_set_session() { |
nothing calls this directly
no test coverage detected