| 109 | } |
| 110 | |
| 111 | Status PyFlightServer::GetSchema(const arrow::flight::ServerCallContext& context, |
| 112 | const arrow::flight::FlightDescriptor& request, |
| 113 | std::unique_ptr<arrow::flight::SchemaResult>* result) { |
| 114 | return SafeCallIntoPython([&] { |
| 115 | const Status status = vtable_.get_schema(server_.obj(), context, request, result); |
| 116 | RETURN_NOT_OK(CheckPyError()); |
| 117 | return status; |
| 118 | }); |
| 119 | } |
| 120 | |
| 121 | Status PyFlightServer::DoGet(const arrow::flight::ServerCallContext& context, |
| 122 | const arrow::flight::Ticket& request, |
nothing calls this directly
no test coverage detected