use of org.finos.legend.engine.plan.execution.stores.relational.connection.RelationalExecutorInfo in project legend-engine by finos.
the class TestRelationalStoreExecutorBuilder method testDefaultBuilder.
@Test
public void testDefaultBuilder() {
RelationalStoreExecutor executor = new RelationalStoreExecutorBuilder().build();
RelationalStoreState state = executor.getStoreState();
RelationalExecutorInfo info = state.getStoreExecutionInfo();
Assert.assertNotNull(info);
}
Aggregations