HBASE-15932 Shell test fails due to uninitialized constant

This commit is contained in:
tedyu 2016-06-01 10:35:00 -07:00
parent 015f2ef629
commit cbb95cd3a9
2 changed files with 2 additions and 2 deletions

View File

@ -64,7 +64,7 @@ public class HColumnDescriptor implements Comparable<HColumnDescriptor> {
// Version 11 -- add column family level configuration.
private static final byte COLUMN_DESCRIPTOR_VERSION = (byte) 11;
private static final String IN_MEMORY_COMPACTION = "IN_MEMORY_COMPACTION";
public static final String IN_MEMORY_COMPACTION = "IN_MEMORY_COMPACTION";
// These constants are used as FileInfo keys
public static final String COMPRESSION = "COMPRESSION";

View File

@ -39,7 +39,7 @@ module HBaseConstants
NAME = org.apache.hadoop.hbase.HConstants::NAME
VERSIONS = org.apache.hadoop.hbase.HConstants::VERSIONS
IN_MEMORY = org.apache.hadoop.hbase.HConstants::IN_MEMORY
IN_MEMORY_COMPACTION = org.apache.hadoop.hbase.HConstants::IN_MEMORY_COMPACTION
IN_MEMORY_COMPACTION = org.apache.hadoop.hbase.HColumnDescriptor::IN_MEMORY_COMPACTION
METADATA = org.apache.hadoop.hbase.HConstants::METADATA
STOPROW = "STOPROW"
STARTROW = "STARTROW"