| 99 | } |
| 100 | |
| 101 | Status PyFlightServer::GetFlightInfo(const arrow::flight::ServerCallContext& context, |
| 102 | const arrow::flight::FlightDescriptor& request, |
| 103 | std::unique_ptr<arrow::flight::FlightInfo>* info) { |
| 104 | return SafeCallIntoPython([&] { |
| 105 | const Status status = vtable_.get_flight_info(server_.obj(), context, request, info); |
| 106 | RETURN_NOT_OK(CheckPyError()); |
| 107 | return status; |
| 108 | }); |
| 109 | } |
| 110 | |
| 111 | Status PyFlightServer::GetSchema(const arrow::flight::ServerCallContext& context, |
| 112 | const arrow::flight::FlightDescriptor& request, |
nothing calls this directly
no test coverage detected