Get a FlightInfo for listing tables.
(
&self,
_query: CommandGetTables,
_request: Request<FlightDescriptor>,
)
| 140 | |
| 141 | /// Get a FlightInfo for listing tables. |
| 142 | async fn get_flight_info_tables( |
| 143 | &self, |
| 144 | _query: CommandGetTables, |
| 145 | _request: Request<FlightDescriptor>, |
| 146 | ) -> Result<Response<FlightInfo>, Status> { |
| 147 | Err(Status::unimplemented( |
| 148 | "get_flight_info_tables has no default implementation", |
| 149 | )) |
| 150 | } |
| 151 | |
| 152 | /// Get a FlightInfo to extract information about the table types. |
| 153 | async fn get_flight_info_table_types( |
no outgoing calls
no test coverage detected