Implementors may override to handle do_put errors
(
&self,
_request: Request<PeekableFlightDataStream>,
error: DoPutError,
)
| 388 | |
| 389 | /// Implementors may override to handle do_put errors |
| 390 | async fn do_put_error_callback( |
| 391 | &self, |
| 392 | _request: Request<PeekableFlightDataStream>, |
| 393 | error: DoPutError, |
| 394 | ) -> Result<Response<<Self as FlightService>::DoPutStream>, Status> { |
| 395 | Err(Status::unimplemented(format!("Unhandled Error: {error}"))) |
| 396 | } |
| 397 | |
| 398 | /// Execute an update SQL statement. |
| 399 | async fn do_put_statement_update( |
no outgoing calls
no test coverage detected