| 119 | } |
| 120 | |
| 121 | Status PyFlightServer::DoGet(const arrow::flight::ServerCallContext& context, |
| 122 | const arrow::flight::Ticket& request, |
| 123 | std::unique_ptr<arrow::flight::FlightDataStream>* stream) { |
| 124 | return SafeCallIntoPython([&] { |
| 125 | const Status status = vtable_.do_get(server_.obj(), context, request, stream); |
| 126 | RETURN_NOT_OK(CheckPyError()); |
| 127 | return status; |
| 128 | }); |
| 129 | } |
| 130 | |
| 131 | Status PyFlightServer::DoPut( |
| 132 | const arrow::flight::ServerCallContext& context, |
nothing calls this directly
no test coverage detected