Repository: hbase Updated Branches: refs/heads/branch-2.0 a15918070 -> f06bcc7df
HBASE-19504 Add TimeRange support into checkAndMutate; ADDENDUM to fix failing unit test Project: http://git-wip-us.apache.org/repos/asf/hbase/repo Commit: http://git-wip-us.apache.org/repos/asf/hbase/commit/f06bcc7d Tree: http://git-wip-us.apache.org/repos/asf/hbase/tree/f06bcc7d Diff: http://git-wip-us.apache.org/repos/asf/hbase/diff/f06bcc7d Branch: refs/heads/branch-2.0 Commit: f06bcc7df17c7a53f6fb52ecf4329054362cb3e0 Parents: a159180 Author: Michael Stack <[email protected]> Authored: Sat Mar 24 12:29:45 2018 -0700 Committer: Michael Stack <[email protected]> Committed: Sat Mar 24 12:31:29 2018 -0700 ---------------------------------------------------------------------- .../test/java/org/apache/hadoop/hbase/client/TestAsyncTable.java | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/hbase/blob/f06bcc7d/hbase-server/src/test/java/org/apache/hadoop/hbase/client/TestAsyncTable.java ---------------------------------------------------------------------- diff --git a/hbase-server/src/test/java/org/apache/hadoop/hbase/client/TestAsyncTable.java b/hbase-server/src/test/java/org/apache/hadoop/hbase/client/TestAsyncTable.java index 576c0a7..e11c869 100644 --- a/hbase-server/src/test/java/org/apache/hadoop/hbase/client/TestAsyncTable.java +++ b/hbase-server/src/test/java/org/apache/hadoop/hbase/client/TestAsyncTable.java @@ -342,7 +342,8 @@ public class TestAsyncTable { @Test public void testCheckAndMutateWithTimeRange() throws Exception { - TEST_UTIL.createTable(TableName.valueOf("testCheckAndMutateWithTimeRange"), FAMILY); + TEST_UTIL.createTable(TableName.valueOf("testCheckAndMutateWithTimeRange" + + System.currentTimeMillis()), FAMILY); AsyncTable<?> table = getTable.get(); final long ts = System.currentTimeMillis() / 2; Put put = new Put(row);
