| 556 | } |
| 557 | |
| 558 | arrow::Result<std::unique_ptr<FlightInfo>> FlightSqlClient::GetSqlInfo( |
| 559 | const FlightCallOptions& options, const std::vector<int>& sql_info) { |
| 560 | flight_sql_pb::CommandGetSqlInfo command; |
| 561 | for (const int& info : sql_info) command.add_info(info); |
| 562 | |
| 563 | return GetFlightInfoForCommand(this, options, command); |
| 564 | } |
| 565 | |
| 566 | arrow::Result<std::unique_ptr<SchemaResult>> FlightSqlClient::GetSqlInfoSchema( |
| 567 | const FlightCallOptions& options) { |