MCPcopy Create free account
hub / github.com/apache/impala / GetMetadataTableNames

Method GetMetadataTableNames

be/src/service/frontend.cc:265–275  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

263}
264
265Status Frontend::GetMetadataTableNames(const string& db, const string& table_name,
266 const string* pattern, const TSessionState* session,
267 TGetTablesResult* metadata_table_names) {
268 TGetMetadataTablesParams params;
269 params.__set_db(db);
270 params.__set_tbl(table_name);
271 if (pattern != nullptr) params.__set_pattern(*pattern);
272 if (session != nullptr) params.__set_session(*session);
273 return JniUtil::CallJniMethod(fe_, get_metadata_table_names_id_, params,
274 metadata_table_names);
275}
276
277Status Frontend::GetCatalogInfo(TGetCatalogInfoResult* catalog_info) {
278 return JniUtil::CallJniMethod(fe_, get_catalog_info_, catalog_info);

Callers 1

ExecLocalCatalogOpMethod · 0.80

Calls 1

CallJniMethodFunction · 0.85

Tested by

no test coverage detected