(client: &mut SessionClient, error: impl Into<SqlError>)
| 696 | } |
| 697 | |
| 698 | fn err(client: &mut SessionClient, error: impl Into<SqlError>) -> SqlResult { |
| 699 | SqlResult::Err { |
| 700 | error: error.into(), |
| 701 | notices: make_notices(client), |
| 702 | } |
| 703 | } |
| 704 | |
| 705 | fn ok(client: &mut SessionClient, tag: String, params: Vec<ParameterStatus>) -> SqlResult { |
| 706 | SqlResult::Ok { |