Index: src/contrib/hbase/src/test/org/apache/hadoop/hbase/PerformanceEvaluation.java =================================================================== --- src/contrib/hbase/src/test/org/apache/hadoop/hbase/PerformanceEvaluation.java (revision 592163) +++ src/contrib/hbase/src/test/org/apache/hadoop/hbase/PerformanceEvaluation.java (working copy) @@ -471,7 +471,11 @@ @Override void testRow(final int i) throws IOException { - table.get(new Text(Integer.toString(i)), COLUMN_NAME); + long start = System.currentTimeMillis(); + //table.get(new Text(Integer.toString(i)), COLUMN_NAME); + table.getRow(new Text(Integer.toString(i))); + long stop = System.currentTimeMillis(); + System.out.println(i + " , " + (stop - start)); } @Override