Get a FlightDataStream containing the data related to the primary and foreign keys.
(
&self,
_query: CommandGetPrimaryKeys,
_request: Request<Ticket>,
)
| 319 | |
| 320 | /// Get a FlightDataStream containing the data related to the primary and foreign keys. |
| 321 | async fn do_get_primary_keys( |
| 322 | &self, |
| 323 | _query: CommandGetPrimaryKeys, |
| 324 | _request: Request<Ticket>, |
| 325 | ) -> Result<Response<<Self as FlightService>::DoGetStream>, Status> { |
| 326 | Err(Status::unimplemented( |
| 327 | "do_get_primary_keys has no default implementation", |
| 328 | )) |
| 329 | } |
| 330 | |
| 331 | /// Get a FlightDataStream containing the data related to the exported keys. |
| 332 | async fn do_get_exported_keys( |
no outgoing calls
no test coverage detected