Get a FlightDataStream containing the list of catalogs.
(
&self,
_query: CommandGetCatalogs,
_request: Request<Ticket>,
)
| 264 | |
| 265 | /// Get a FlightDataStream containing the list of catalogs. |
| 266 | async fn do_get_catalogs( |
| 267 | &self, |
| 268 | _query: CommandGetCatalogs, |
| 269 | _request: Request<Ticket>, |
| 270 | ) -> Result<Response<<Self as FlightService>::DoGetStream>, Status> { |
| 271 | Err(Status::unimplemented( |
| 272 | "do_get_catalogs has no default implementation", |
| 273 | )) |
| 274 | } |
| 275 | |
| 276 | /// Get a FlightDataStream containing the list of schemas. |
| 277 | async fn do_get_schemas( |
no outgoing calls
no test coverage detected