MCPcopy Create free account
hub / github.com/apache/arrow / ListFlights

Method ListFlights

python/pyarrow/src/arrow/python/flight.cc:89–99  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

87}
88
89Status PyFlightServer::ListFlights(
90 const arrow::flight::ServerCallContext& context,
91 const arrow::flight::Criteria* criteria,
92 std::unique_ptr<arrow::flight::FlightListing>* listings) {
93 return SafeCallIntoPython([&] {
94 const Status status =
95 vtable_.list_flights(server_.obj(), context, criteria, listings);
96 RETURN_NOT_OK(CheckPyError());
97 return status;
98 });
99}
100
101Status PyFlightServer::GetFlightInfo(const arrow::flight::ServerCallContext& context,
102 const arrow::flight::FlightDescriptor& request,

Callers

nothing calls this directly

Calls 3

SafeCallIntoPythonFunction · 0.85
CheckPyErrorFunction · 0.85
list_flightsMethod · 0.45

Tested by

no test coverage detected