| 194 | } |
| 195 | |
| 196 | std::shared_ptr<ResultSet> FlightSqlStatement::GetTables_V2( |
| 197 | const std::string* catalog_name, const std::string* schema_name, |
| 198 | const std::string* table_name, const std::string* table_type) { |
| 199 | ColumnNames column_names{"TABLE_QUALIFIER", "TABLE_OWNER", "TABLE_NAME", "TABLE_TYPE", |
| 200 | "REMARKS"}; |
| 201 | |
| 202 | return GetTables(catalog_name, schema_name, table_name, table_type, column_names); |
| 203 | } |
| 204 | |
| 205 | std::shared_ptr<ResultSet> FlightSqlStatement::GetTables_V3( |
| 206 | const std::string* catalog_name, const std::string* schema_name, |
no outgoing calls