use of com.facebook.presto.hive.metastore.HivePartitionMutator in project presto by prestodb.
the class TestHiveClientInMemoryMetastore method createMetastore.
@Override
protected ExtendedHiveMetastore createMetastore(File tempDir) {
File baseDir = new File(tempDir, "metastore");
InMemoryHiveMetastore hiveMetastore = new InMemoryHiveMetastore(baseDir);
return new BridgingHiveMetastore(hiveMetastore, new HivePartitionMutator());
}
Aggregations