Execute an update SQL statement.
(
&self,
_ticket: CommandStatementUpdate,
_request: Request<PeekableFlightDataStream>,
)
| 397 | |
| 398 | /// Execute an update SQL statement. |
| 399 | async fn do_put_statement_update( |
| 400 | &self, |
| 401 | _ticket: CommandStatementUpdate, |
| 402 | _request: Request<PeekableFlightDataStream>, |
| 403 | ) -> Result<i64, Status> { |
| 404 | Err(Status::unimplemented( |
| 405 | "do_put_statement_update has no default implementation", |
| 406 | )) |
| 407 | } |
| 408 | |
| 409 | /// Execute a bulk ingestion. |
| 410 | async fn do_put_statement_ingest( |
no outgoing calls
no test coverage detected