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

Method GetSchema

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

Source from the content-addressed store, hash-verified

109}
110
111Status 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
121Status PyFlightServer::DoGet(const arrow::flight::ServerCallContext& context,
122 const arrow::flight::Ticket& request,

Callers

nothing calls this directly

Calls 3

SafeCallIntoPythonFunction · 0.85
CheckPyErrorFunction · 0.85
get_schemaMethod · 0.80

Tested by

no test coverage detected