Get a FlightInfo for listing catalogs.
(
&self,
_query: CommandGetCatalogs,
_request: Request<FlightDescriptor>,
)
| 118 | |
| 119 | /// Get a FlightInfo for listing catalogs. |
| 120 | async fn get_flight_info_catalogs( |
| 121 | &self, |
| 122 | _query: CommandGetCatalogs, |
| 123 | _request: Request<FlightDescriptor>, |
| 124 | ) -> Result<Response<FlightInfo>, Status> { |
| 125 | Err(Status::unimplemented( |
| 126 | "get_flight_info_catalogs has no default implementation", |
| 127 | )) |
| 128 | } |
| 129 | |
| 130 | /// Get a FlightInfo for listing schemas. |
| 131 | async fn get_flight_info_schemas( |
no outgoing calls
no test coverage detected