) throws IOException {
{
final KijiDataRequest singletonRequest = KijiDataRequest.create("map", "10");
final long rowDataStartTime = System.nanoTime();
final KijiRowData testRowData = reader.get(table.getEntityId("foo"), singletonRequest);
testRowData.containsCell("family", "qualifier", 1);
final Integer value = testRowData.getMostRecentValue("map", "10");
LOG.info("row data single value time = {} nanoseconds",
(double) (System.nanoTime() - rowDataStartTime) / 1000000);
final long resultStartTime = System.nanoTime();