Merge branch 'master' of github.com:brianfrankcooper/YCSB

This commit is contained in:
Brian Frank Cooper 2010-04-25 11:43:18 -07:00
Родитель 8a3ac3debd ab55f7aa49
Коммит fa173a26f4
1 изменённых файлов: 7 добавлений и 1 удалений

Просмотреть файл

@ -83,7 +83,13 @@ public class HBaseClient extends com.yahoo.ycsb.DB
*/
public void cleanup() throws DBException
{
try {
if (_hTable != null) {
_hTable.flushCommits();
}
} catch (IOException e) {
throw new DBException(e);
}
}
public void getHTable(String table) throws IOException