use of com.facebook.presto.tpcds.TpcdsConnectorFactory in project presto by prestodb.
the class TestTpcdsLocalStats method setUp.
@BeforeClass
public void setUp() {
Session defaultSession = testSessionBuilder().setCatalog("tpcds").setSchema("sf1").setSystemProperty(PRINT_STATS_FOR_NON_JOIN_QUERY, "true").build();
LocalQueryRunner queryRunner = new LocalQueryRunner(defaultSession);
queryRunner.createCatalog("tpcds", new TpcdsConnectorFactory(), emptyMap());
statisticsAssertion = new StatisticsAssertion(queryRunner);
}
Aggregations