Add a warning to the query result
(&mut self, warning: String)
| 88 | |
| 89 | /// Add a warning to the query result |
| 90 | pub fn add_warning(&mut self, warning: String) { |
| 91 | self.warnings.push(warning); |
| 92 | } |
| 93 | |
| 94 | /// Check if there are any warnings |
| 95 | pub fn has_warnings(&self) -> bool { |
no outgoing calls
no test coverage detected