HBASE-5694 getRowsWithColumnsTs() in Thrift service handles timestamps incorrectly

git-svn-id: https://svn.apache.org/repos/asf/hbase/trunk@1308445 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Michael Stack 2012-04-02 17:59:48 +00:00
parent 80722e7290
commit 6135aa2d5a
1 changed files with 1 additions and 1 deletions

View File

@ -829,8 +829,8 @@ public class ThriftServerRunner implements Runnable {
get.addColumn(famAndQf[0], famAndQf[1]);
}
}
get.setTimeRange(Long.MIN_VALUE, timestamp);
}
get.setTimeRange(Long.MIN_VALUE, timestamp);
gets.add(get);
}
Result[] result = table.get(gets);