| 227 | std::shared_ptr<Schema> PyFlightDataStream::schema() { return stream_->schema(); } |
| 228 | |
| 229 | arrow::Result<FlightPayload> PyFlightDataStream::GetSchemaPayload() { |
| 230 | return stream_->GetSchemaPayload(); |
| 231 | } |
| 232 | |
| 233 | arrow::Result<FlightPayload> PyFlightDataStream::Next() { return stream_->Next(); } |
| 234 |
nothing calls this directly
no test coverage detected