Re-enable the default hint for the next prompt.
(&self)
| 70 | |
| 71 | /// Re-enable the default hint for the next prompt. |
| 72 | pub fn reset_hint(&self) { |
| 73 | self.show_hint.set(true); |
| 74 | } |
| 75 | |
| 76 | fn validate_input(&self, input: &str) -> Result<ValidationResult> { |
| 77 | if let Some(sql) = input.strip_suffix(';') { |
no test coverage detected