| 203 | } |
| 204 | |
| 205 | std::shared_ptr<ResultSet> FlightSqlStatement::GetTables_V3( |
| 206 | const std::string* catalog_name, const std::string* schema_name, |
| 207 | const std::string* table_name, const std::string* table_type) { |
| 208 | ColumnNames column_names{"TABLE_CAT", "TABLE_SCHEM", "TABLE_NAME", "TABLE_TYPE", |
| 209 | "REMARKS"}; |
| 210 | |
| 211 | return GetTables(catalog_name, schema_name, table_name, table_type, column_names); |
| 212 | } |
| 213 | |
| 214 | std::shared_ptr<ResultSet> FlightSqlStatement::GetColumns_V2( |
| 215 | const std::string* catalog_name, const std::string* schema_name, |