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

Method DoGet

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

Source from the content-addressed store, hash-verified

119}
120
121Status 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
131Status PyFlightServer::DoPut(
132 const arrow::flight::ServerCallContext& context,

Callers

nothing calls this directly

Calls 3

SafeCallIntoPythonFunction · 0.85
CheckPyErrorFunction · 0.85
do_getMethod · 0.45

Tested by

no test coverage detected