use of io.trino.plugin.hive.metastore.thrift.InMemoryThriftMetastore in project trino by trinodb.
the class TestHiveInMemoryMetastore method createMetastore.
@Override
protected HiveMetastore createMetastore(File tempDir, HiveIdentity identity) {
File baseDir = new File(tempDir, "metastore");
ThriftMetastoreConfig metastoreConfig = new ThriftMetastoreConfig();
InMemoryThriftMetastore hiveMetastore = new InMemoryThriftMetastore(baseDir, metastoreConfig);
return new BridgingHiveMetastore(hiveMetastore, identity);
}
Aggregations