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:
parent
80722e7290
commit
6135aa2d5a
|
@ -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);
|
||||
|
|
Loading…
Reference in New Issue