Package org.kitesdk.data.spi.hive

Examples of org.kitesdk.data.spi.hive.MetaStoreUtil.dropTable()


  @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);
    }
  }
}
View Full Code Here

TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.