Package org.kitesdk.data.spi.hive

Examples of org.kitesdk.data.spi.hive.MetaStoreUtil


  }

  @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

Related Classes of org.kitesdk.data.spi.hive.MetaStoreUtil

Copyright © 2018 www.massapicom. 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.