txnService().run(session(), new Runnable() {
@Override
public void run() {
// Approximate count doesn't have to match in general, but there
// is no reason for it to be off in these simple scenarios
TableStatus tableStatus = getTable(tid).rowDef().getTableStatus();
assertEquals("ApproximateRowCount", ROW_COUNT, tableStatus.getApproximateRowCount(session()));
}
});
}