verifyDropTableAfterDrop(completion, true);
}
@Test
public void testFindCompletion_DropTable_AfterDrop_SpaceCqlDemo_IfExists() {
qs.execute(new CqlQuery(CqlQueryType.USE, "use cqldemo"));
ContextCqlCompletion completion = cs.findCompletion(new CqlQuery(CqlQueryType.DROP_TABLE,
"drop table if exists a"));
verifyDropTableAfterDrop(completion, true);
}