414243444546474849
@After public void cleanHCatalog() { // ensures all tables are removed MetaStoreUtil hcat = new MetaStoreUtil(fileSystem.getConf()); for (String tableName : hcat.getAllTables("default")) { hcat.dropTable("default", tableName); } } }