| 329 | } |
| 330 | |
| 331 | Status Frontend::GetCatalogObject(const TCatalogObject& req, |
| 332 | TCatalogObject* resp) { |
| 333 | return JniUtil::CallJniMethod(fe_, get_catalog_object_id_, req, resp); |
| 334 | } |
| 335 | |
| 336 | Status Frontend::GetCatalogTable(const TTableName& table_name, jobject* result) { |
| 337 | return JniUtil::CallJniMethod(fe_, get_catalog_table_id_, table_name, result); |
no test coverage detected