Get a FlightDataStream containing the list of SqlInfo results.
(
&self,
_query: CommandGetSqlInfo,
_request: Request<Ticket>,
)
| 308 | |
| 309 | /// Get a FlightDataStream containing the list of SqlInfo results. |
| 310 | async fn do_get_sql_info( |
| 311 | &self, |
| 312 | _query: CommandGetSqlInfo, |
| 313 | _request: Request<Ticket>, |
| 314 | ) -> Result<Response<<Self as FlightService>::DoGetStream>, Status> { |
| 315 | Err(Status::unimplemented( |
| 316 | "do_get_sql_info has no default implementation", |
| 317 | )) |
| 318 | } |
| 319 | |
| 320 | /// Get a FlightDataStream containing the data related to the primary and foreign keys. |
| 321 | async fn do_get_primary_keys( |
no outgoing calls
no test coverage detected