MCPcopy Create free account
hub / github.com/apache/arrow-rs / get_flight_info_fallback

Method get_flight_info_fallback

arrow-flight/src/sql/server.rs:230–239  ·  view source on GitHub ↗

Implementors may override to handle additional calls to get_flight_info()

(
        &self,
        cmd: Command,
        _request: Request<FlightDescriptor>,
    )

Source from the content-addressed store, hash-verified

228
229 /// Implementors may override to handle additional calls to get_flight_info()
230 async fn get_flight_info_fallback(
231 &self,
232 cmd: Command,
233 _request: Request<FlightDescriptor>,
234 ) -> Result<Response<FlightInfo>, Status> {
235 Err(Status::unimplemented(format!(
236 "get_flight_info: The defined request is invalid: {}",
237 cmd.type_url()
238 )))
239 }
240
241 // do_get
242

Callers 1

get_flight_infoMethod · 0.80

Implementers 3

flight_sql_client_cli.rsarrow-flight/tests/flight_sql_client_c
flight_sql_client.rsarrow-flight/tests/flight_sql_client.r
flight_sql_server.rsarrow-flight/examples/flight_sql_serve

Calls

no outgoing calls

Tested by

no test coverage detected