(self, cli: &C)
| 20 | |
| 21 | #[inline] |
| 22 | fn execute_blocking(self, cli: &C) -> Self::ExecuteOutput { |
| 23 | let stream = self.query_blocking(cli)?; |
| 24 | RowAffected::from(stream).wait() |
| 25 | } |
| 26 | |
| 27 | #[inline] |
| 28 | fn query_blocking(self, cli: &C) -> Self::QueryOutput { |