You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@hbase.apache.org by ap...@apache.org on 2019/09/05 23:20:15 UTC

[hbase] branch branch-1.3 updated: Amend HBASE-22937 The RawBytesComparator in branch-1 have wrong comparison order

This is an automated email from the ASF dual-hosted git repository.

apurtell pushed a commit to branch branch-1.3
in repository https://gitbox.apache.org/repos/asf/hbase.git


The following commit(s) were added to refs/heads/branch-1.3 by this push:
     new 4abfc11  Amend HBASE-22937 The RawBytesComparator in branch-1 have wrong comparison order
4abfc11 is described below

commit 4abfc11a722884629f7c6d1c526b1df873cb2785
Author: Andrew Purtell <ap...@apache.org>
AuthorDate: Thu Sep 5 16:15:58 2019 -0700

    Amend HBASE-22937 The RawBytesComparator in branch-1 have wrong comparison order
    
    Fix TestCheckTestClasses failure
---
 hbase-common/src/test/java/org/apache/hadoop/hbase/TestKeyValue.java | 3 +++
 1 file changed, 3 insertions(+)

diff --git a/hbase-common/src/test/java/org/apache/hadoop/hbase/TestKeyValue.java b/hbase-common/src/test/java/org/apache/hadoop/hbase/TestKeyValue.java
index 691dc97..fd43ff49 100644
--- a/hbase-common/src/test/java/org/apache/hadoop/hbase/TestKeyValue.java
+++ b/hbase-common/src/test/java/org/apache/hadoop/hbase/TestKeyValue.java
@@ -37,11 +37,14 @@ import org.apache.commons.logging.LogFactory;
 import org.apache.hadoop.hbase.KeyValue.KVComparator;
 import org.apache.hadoop.hbase.KeyValue.MetaComparator;
 import org.apache.hadoop.hbase.KeyValue.Type;
+import org.apache.hadoop.hbase.testclassification.SmallTests;
 import org.apache.hadoop.hbase.util.Bytes;
 import org.junit.Test;
+import org.junit.experimental.categories.Category;
 
 import static org.junit.Assert.assertNotEquals;
 
+@Category(SmallTests.class)
 public class TestKeyValue extends TestCase {
   private static final Log LOG = LogFactory.getLog(TestKeyValue.class);