try {
conn.getHBaseAdmin().flush(this.getTableName());
}
catch (IOException e) {
throw new HBqlException(e);
}
catch (InterruptedException e) {
throw new HBqlException(e);
}
return new ExecutionResults("Table " + this.getTableName() + " flushed.");
}