| 153 | } |
| 154 | |
| 155 | Status PyFlightServer::DoAction(const arrow::flight::ServerCallContext& context, |
| 156 | const arrow::flight::Action& action, |
| 157 | std::unique_ptr<arrow::flight::ResultStream>* result) { |
| 158 | return SafeCallIntoPython([&] { |
| 159 | const Status status = vtable_.do_action(server_.obj(), context, action, result); |
| 160 | RETURN_NOT_OK(CheckPyError()); |
| 161 | return status; |
| 162 | }); |
| 163 | } |
| 164 | |
| 165 | Status PyFlightServer::ListActions(const arrow::flight::ServerCallContext& context, |
| 166 | std::vector<arrow::flight::ActionType>* actions) { |
nothing calls this directly
no test coverage detected