HBASE-24317 Removed deprecated setCacheDataInL1 in HColumnDescriptor (#1641)

Signed-off-by: stack <stack@apache.org>
Signed-off-by: Duo Zhang <zhangduo@apache.org>
Signed-off-by: Viraj Jasani <vjasani@apache.org>
This commit is contained in:
Jan Hentschel 2020-05-05 09:18:51 +02:00 committed by GitHub
parent 0632e9893f
commit fdbf45886d
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 0 additions and 13 deletions

View File

@ -521,19 +521,6 @@ public class HColumnDescriptor implements ColumnFamilyDescriptor, Comparable<HCo
return this; return this;
} }
/**
* This is a noop call from HBase 2.0 onwards
*
* @return this (for chained invocation)
* @deprecated Since 2.0 and will be removed in 3.0 with out any replacement. Caching data in on
* heap Cache, when there are both on heap LRU Cache and Bucket Cache will no longer
* be supported from 2.0.
*/
@Deprecated
public HColumnDescriptor setCacheDataInL1(boolean value) {
return this;
}
@Override @Override
public boolean isCacheIndexesOnWrite() { public boolean isCacheIndexesOnWrite() {
return delegatee.isCacheIndexesOnWrite(); return delegatee.isCacheIndexesOnWrite();