use of org.infinispan.transaction.tm.DummyBaseTransactionManager in project teiid by teiid.
the class TestODataIntegration method before.
@Before
public void before() throws Exception {
TimestampWithTimezone.resetCalendar(TimeZone.getTimeZone("UTC"));
teiid = new EmbeddedServer();
EmbeddedConfiguration config = new EmbeddedConfiguration();
config.setTransactionManager(new DummyBaseTransactionManager());
teiid.start(config);
ef = new LoopbackExecutionFactory() {
@Override
public boolean supportsRowOffset() {
return false;
}
};
teiid.addTranslator("loopback", ef);
createContext("/odata4", null);
deployVDB();
}
Aggregations