use of org.apache.hadoop.hbase.util.byterange.impl.ByteRangeTreeSet in project hbase by apache.
the class PrefixTreeEncoder method initializeTagHelpers.
protected void initializeTagHelpers() {
this.tagsRange = new SimpleMutableByteRange();
this.tagsDeduplicator = USE_HASH_COLUMN_SORTER ? new ByteRangeHashSet() : new ByteRangeTreeSet();
this.tagsTokenizer = new Tokenizer();
this.tagsWriter = new ColumnSectionWriter();
}
Aggregations