Set the current schema for this session
(&mut self, schema: Option<String>)
| 265 | |
| 266 | /// Set the current schema for this session |
| 267 | pub fn set_current_schema(&mut self, schema: Option<String>) { |
| 268 | self.current_schema = schema; |
| 269 | self.update_activity(); |
| 270 | } |
| 271 | |
| 272 | /// Get the current schema for this session |
| 273 | pub fn get_current_schema(&self) -> Option<&String> { |
nothing calls this directly
no test coverage detected