"keyspaceCreation=" + dataSet.isKeyspaceCreation() +
";keyspaceName=" + keyspaceName);
if (dataSet.isKeyspaceDeletion()) {
String selectQuery = "SELECT keyspace_name FROM system.schema_keyspaces where keyspace_name='" + keyspaceName + "'";
ResultSet keyspaceQueryResult = session.execute(selectQuery);
if (keyspaceQueryResult.iterator().hasNext()) {
String dropQuery = "DROP KEYSPACE " + keyspaceName;
log.debug("executing : " + dropQuery);
session.execute(dropQuery);
}
}