HBASE-2199 hbase.client.tableindexed.IndexSpecification, lines 72-73 should be reversed
git-svn-id: https://svn.apache.org/repos/asf/hadoop/hbase/trunk@909618 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
ceebf40c0b
commit
03c67da3c0
|
@ -200,6 +200,8 @@ Release 0.21.0 - Unreleased
|
||||||
a long time (Cristian Ivascu via Stack)
|
a long time (Cristian Ivascu via Stack)
|
||||||
HBASE-2193 Better readability of - hbase.regionserver.lease.period
|
HBASE-2193 Better readability of - hbase.regionserver.lease.period
|
||||||
(Kay Kay via Stack)
|
(Kay Kay via Stack)
|
||||||
|
HBASE-2199 hbase.client.tableindexed.IndexSpecification, lines 72-73
|
||||||
|
should be reversed (Adrian Popescu via Stack)
|
||||||
|
|
||||||
IMPROVEMENTS
|
IMPROVEMENTS
|
||||||
HBASE-1760 Cleanup TODOs in HTable
|
HBASE-1760 Cleanup TODOs in HTable
|
||||||
|
@ -366,6 +368,8 @@ Release 0.21.0 - Unreleased
|
||||||
11 attempts".
|
11 attempts".
|
||||||
HBASE-2220 Add a binary comparator that only compares up to the length
|
HBASE-2220 Add a binary comparator that only compares up to the length
|
||||||
of the supplied byte array (Bruno Dumon via Stack)
|
of the supplied byte array (Bruno Dumon via Stack)
|
||||||
|
HBASE-2211 Add a new Filter that checks a single column value but does not
|
||||||
|
emit it. (Ferdy via Stack)
|
||||||
|
|
||||||
NEW FEATURES
|
NEW FEATURES
|
||||||
HBASE-1961 HBase EC2 scripts
|
HBASE-1961 HBase EC2 scripts
|
||||||
|
|
|
@ -79,9 +79,9 @@ public class IndexSpecification implements Writable {
|
||||||
this.indexId = indexId;
|
this.indexId = indexId;
|
||||||
this.indexedColumns = indexedColumns;
|
this.indexedColumns = indexedColumns;
|
||||||
this.keyGenerator = keyGenerator;
|
this.keyGenerator = keyGenerator;
|
||||||
this.makeAllColumns();
|
|
||||||
this.additionalColumns = (additionalColumns == null)? new byte[0][0] :
|
this.additionalColumns = (additionalColumns == null)? new byte[0][0] :
|
||||||
additionalColumns;
|
additionalColumns;
|
||||||
|
this.makeAllColumns();
|
||||||
}
|
}
|
||||||
|
|
||||||
public IndexSpecification() {
|
public IndexSpecification() {
|
||||||
|
|
Loading…
Reference in New Issue