| 1032 | //------------------------------------------------------------ |
| 1033 | |
| 1034 | Status ResultStream::Drain() { |
| 1035 | while (true) { |
| 1036 | ARROW_ASSIGN_OR_RAISE(auto result, Next()); |
| 1037 | if (!result) break; |
| 1038 | } |
| 1039 | return Status::OK(); |
| 1040 | } |
| 1041 | |
| 1042 | FlightStreamChunk::FlightStreamChunk() noexcept = default; |
| 1043 | FlightStreamChunk::~FlightStreamChunk() = default; |
no test coverage detected