| 415 | } |
| 416 | |
| 417 | arrow::Result<std::unique_ptr<SchemaResult>> FlightSqlClient::GetTablesSchema( |
| 418 | const FlightCallOptions& options, bool include_schema) { |
| 419 | flight_sql_pb::CommandGetTables command; |
| 420 | command.set_include_schema(include_schema); |
| 421 | return GetSchemaForCommand(this, options, command); |
| 422 | } |
| 423 | |
| 424 | arrow::Result<std::unique_ptr<FlightInfo>> FlightSqlClient::GetPrimaryKeys( |
| 425 | const FlightCallOptions& options, const TableRef& table_ref) { |