use of io.prestosql.heuristicindex.HeuristicIndexerManager in project hetu-core by openlookeng.
the class TestDropCacheTask method testDropCacheNotExistsTrue.
@Test
public void testDropCacheNotExistsTrue() {
QualifiedName tableName = QualifiedName.of(CATALOG_NAME, schema, table);
DropCache statement = new DropCache(tableName, true);
getFutureValue(new DropCacheTask().execute(statement, createTestTransactionManager(), metadata, new AllowAllAccessControl(), stateMachine, Collections.emptyList(), new HeuristicIndexerManager(new FileSystemClientManager(), new HetuMetaStoreManager())));
assertFalse(SplitCacheMap.getInstance().cacheExists(tableName));
QualifiedName table2Name = QualifiedName.of(CATALOG_NAME, schema, table2);
DropCache statement2 = new DropCache(table2Name, true);
assertTrue(SplitCacheMap.getInstance().cacheExists(table2Name));
getFutureValue(new DropCacheTask().execute(statement2, createTestTransactionManager(), metadata, new AllowAllAccessControl(), stateMachine, Collections.emptyList(), new HeuristicIndexerManager(new FileSystemClientManager(), new HetuMetaStoreManager())));
assertFalse(SplitCacheMap.getInstance().cacheExists(table2Name));
}
use of io.prestosql.heuristicindex.HeuristicIndexerManager in project hetu-core by openlookeng.
the class TestDropCacheTask method testDropCacheNotExistsFalse.
@Test
public void testDropCacheNotExistsFalse() {
DropCache statement = new DropCache(QualifiedName.of("test_nonexistent_table"), false);
QueryStateMachine queryStateMachine = createQueryStateMachine("START TRANSACTION", testSession, transactionManager);
try {
getFutureValue(new DropCacheTask().execute(statement, createTestTransactionManager(), metadata, new AllowAllAccessControl(), queryStateMachine, Collections.emptyList(), new HeuristicIndexerManager(new FileSystemClientManager(), new HetuMetaStoreManager())));
fail("expected exception");
} catch (RuntimeException e) {
// Expected
assertTrue(e instanceof SemanticException);
SemanticException semanticException = (SemanticException) e;
assertEquals(semanticException.getCode(), SemanticErrorCode.MISSING_CACHE);
}
}
use of io.prestosql.heuristicindex.HeuristicIndexerManager in project hetu-core by openlookeng.
the class TestResetSessionTask method test.
@Test
public void test() {
Session session = testSessionBuilder(metadata.getSessionPropertyManager()).setSystemProperty("foo", "bar").setCatalogSessionProperty(CATALOG_NAME, "baz", "blah").build();
QueryStateMachine stateMachine = QueryStateMachine.begin("reset foo", Optional.empty(), session, URI.create("fake://uri"), new ResourceGroupId("test"), new NoOpResourceGroupManager(), false, transactionManager, accessControl, executor, metadata, WarningCollector.NOOP);
getFutureValue(new ResetSessionTask().execute(new ResetSession(QualifiedName.of(CATALOG_NAME, "baz")), transactionManager, metadata, accessControl, stateMachine, emptyList(), new HeuristicIndexerManager(new FileSystemClientManager(), new HetuMetaStoreManager())));
Set<String> sessionProperties = stateMachine.getResetSessionProperties();
assertEquals(sessionProperties, ImmutableSet.of("catalog.baz"));
}
use of io.prestosql.heuristicindex.HeuristicIndexerManager in project hetu-core by openlookeng.
the class TestRollbackTask method testRollback.
@Test
public void testRollback() {
TransactionManager transactionManager = createTestTransactionManager();
Session session = sessionBuilder().setTransactionId(transactionManager.beginTransaction(false)).build();
QueryStateMachine stateMachine = createQueryStateMachine("ROLLBACK", session, transactionManager);
assertTrue(stateMachine.getSession().getTransactionId().isPresent());
assertEquals(transactionManager.getAllTransactionInfos().size(), 1);
getFutureValue(new RollbackTask().execute(new Rollback(), transactionManager, metadata, new AllowAllAccessControl(), stateMachine, emptyList(), new HeuristicIndexerManager(new FileSystemClientManager(), new HetuMetaStoreManager())));
assertTrue(stateMachine.getQueryInfo(Optional.empty()).isClearTransactionId());
assertFalse(stateMachine.getQueryInfo(Optional.empty()).getStartedTransactionId().isPresent());
assertTrue(transactionManager.getAllTransactionInfos().isEmpty());
}
use of io.prestosql.heuristicindex.HeuristicIndexerManager in project hetu-core by openlookeng.
the class TestSetSessionTask method testSetSessionWithParameters.
private void testSetSessionWithParameters(String property, Expression expression, String expectedValue, List<Expression> parameters) {
QualifiedName qualifiedPropName = QualifiedName.of(CATALOG_NAME, property);
QueryStateMachine stateMachine = QueryStateMachine.begin(format("set %s = 'old_value'", qualifiedPropName), Optional.empty(), TEST_SESSION, URI.create("fake://uri"), new ResourceGroupId("test"), new NoOpResourceGroupManager(), false, transactionManager, accessControl, executor, metadata, WarningCollector.NOOP);
getFutureValue(new SetSessionTask().execute(new SetSession(qualifiedPropName, expression), transactionManager, metadata, accessControl, stateMachine, parameters, new HeuristicIndexerManager(new FileSystemClientManager(), new HetuMetaStoreManager())));
Map<String, String> sessionProperties = stateMachine.getSetSessionProperties();
assertEquals(sessionProperties, ImmutableMap.of(qualifiedPropName.toString(), expectedValue));
}
Aggregations