MCPcopy Create free account
hub / github.com/apache/arrow / GetFlightInfo

Method GetFlightInfo

python/pyarrow/src/arrow/python/flight.cc:101–109  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

99}
100
101Status 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
111Status PyFlightServer::GetSchema(const arrow::flight::ServerCallContext& context,
112 const arrow::flight::FlightDescriptor& request,

Callers

nothing calls this directly

Calls 3

SafeCallIntoPythonFunction · 0.85
CheckPyErrorFunction · 0.85
get_flight_infoMethod · 0.45

Tested by

no test coverage detected