| 87 | } |
| 88 | |
| 89 | Status 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 | |
| 101 | Status PyFlightServer::GetFlightInfo(const arrow::flight::ServerCallContext& context, |
| 102 | const arrow::flight::FlightDescriptor& request, |
nothing calls this directly
no test coverage detected