(client: &mut SessionClient, tag: String, params: Vec<ParameterStatus>)
| 703 | } |
| 704 | |
| 705 | fn ok(client: &mut SessionClient, tag: String, params: Vec<ParameterStatus>) -> SqlResult { |
| 706 | SqlResult::Ok { |
| 707 | ok: tag, |
| 708 | parameters: params, |
| 709 | notices: make_notices(client), |
| 710 | } |
| 711 | } |
| 712 | } |
| 713 | |
| 714 | #[derive(Debug, Deserialize, Serialize)] |