()
| 234 | |
| 235 | #[test] |
| 236 | fn parse_set_session() { |
| 237 | let (k, v) = parse_set_command("SET SESSION nodedb.consistency = 'eventual'").unwrap(); |
| 238 | assert_eq!(k, "nodedb.consistency"); |
| 239 | assert_eq!(v, "eventual"); |
| 240 | } |
| 241 | |
| 242 | #[test] |
| 243 | fn parse_set_nodedb_tenant() { |
nothing calls this directly
no test coverage detected