Package org.apache.drill.exec.store.hive

Examples of org.apache.drill.exec.store.hive.HiveTestDataGenerator


/** Contains tests for creating/droping and using views in Drill. */
public class TestViews extends JdbcTestQueryBase {

  @BeforeClass
  public static void generateHive() throws Exception{
    new HiveTestDataGenerator().generateTestData();

    // delete tmp workspace directory
    File f = new File("/tmp/drilltest");
    if(f.exists()){
      FileUtils.cleanDirectory(f);
View Full Code Here


*/
public class TestMetadataDDL extends JdbcTestQueryBase {

  @BeforeClass
  public static void generateHive() throws Exception{
    new HiveTestDataGenerator().generateTestData();
  }
View Full Code Here

public class TestHiveScalarUDFs {

  @BeforeClass
  public static void generateHive() throws Exception{
    new HiveTestDataGenerator().generateTestData();
  }
View Full Code Here

public class TestHiveProjectPushDown extends PlanTestBase {

  @BeforeClass
  public static void generateHive() throws Exception{
    new HiveTestDataGenerator().createAndAddHiveTestPlugin(bit.getContext().getStorage());
  }
View Full Code Here

public class TestSampleHiveUDFs extends BaseTestQuery {

  @BeforeClass
  public static void addStoragePlugins() throws Exception{
    new HiveTestDataGenerator().createAndAddHiveTestPlugin(bit.getContext().getStorage());
  }
View Full Code Here

public class TestHiveStorage extends JdbcTestQueryBase{

  @BeforeClass
  public static void generateHive() throws Exception{
    new HiveTestDataGenerator().generateTestData();
  }
View Full Code Here

public class TestSampleHiveUDFs extends BaseTestQuery {

  @BeforeClass
  public static void addStoragePlugins() throws Exception{
    new HiveTestDataGenerator().createAndAddHiveTestPlugin(bit.getContext().getStorage());
  }
View Full Code Here

public class TestHiveScalarUDFs {

  @BeforeClass
  public static void generateHive() throws Exception{
    new HiveTestDataGenerator().generateTestData();
  }
View Full Code Here

public class TestHivePartitionPruning extends PlanTestBase {

  @BeforeClass
  public static void generateHive() throws Exception{
    new HiveTestDataGenerator().createAndAddHiveTestPlugin(bit.getContext().getStorage());
  }
View Full Code Here

public class TestHiveProjectPushDown extends PlanTestBase {

  @BeforeClass
  public static void generateHive() throws Exception{
    new HiveTestDataGenerator().createAndAddHiveTestPlugin(bit.getContext().getStorage());
  }
View Full Code Here

TOP

Related Classes of org.apache.drill.exec.store.hive.HiveTestDataGenerator

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.