| 548 | FlightClient::FlightClient() : closed_(false), write_size_limit_bytes_(0) {} |
| 549 | |
| 550 | FlightClient::~FlightClient() { |
| 551 | ARROW_WARN_NOT_OK(Close(), "FlightClient::~FlightClient(): Close() failed"); |
| 552 | } |
| 553 | |
| 554 | arrow::Result<std::unique_ptr<FlightClient>> FlightClient::Connect( |
| 555 | const Location& location) { |