HBASE-23775 Removed deprecated method createLocalHTU(Configuration) from HBaseTestingUtility
Signed-off-by: Sean Busbey <busbey@apache.org>
This commit is contained in:
parent
1295d058ad
commit
93c5e7691f
|
@ -342,18 +342,6 @@ public class HBaseTestingUtility extends HBaseZKTestingUtility {
|
|||
this.conf.getBoolean(LocalHBaseCluster.ASSIGN_RANDOM_PORTS, true));
|
||||
}
|
||||
|
||||
/**
|
||||
* @deprecated since 2.0.0 and will be removed in 3.0.0. Use
|
||||
* {@link #HBaseTestingUtility(Configuration)} instead.
|
||||
* @return a normal HBaseTestingUtility
|
||||
* @see #HBaseTestingUtility(Configuration)
|
||||
* @see <a href="https://issues.apache.org/jira/browse/HBASE-19841">HBASE-19841</a>
|
||||
*/
|
||||
@Deprecated
|
||||
public static HBaseTestingUtility createLocalHTU(Configuration c) {
|
||||
return new HBaseTestingUtility(c);
|
||||
}
|
||||
|
||||
/**
|
||||
* Close both the region {@code r} and it's underlying WAL. For use in tests.
|
||||
*/
|
||||
|
|
|
@ -107,7 +107,7 @@ public class TestCompactingMemStore extends TestDefaultMemStore {
|
|||
conf.setBoolean(MemStoreLAB.USEMSLAB_KEY, true);
|
||||
conf.setFloat(MemStoreLAB.CHUNK_POOL_MAXSIZE_KEY, 0.2f);
|
||||
conf.setInt(HRegion.MEMSTORE_PERIODIC_FLUSH_INTERVAL, 1000);
|
||||
HBaseTestingUtility hbaseUtility = HBaseTestingUtility.createLocalHTU(conf);
|
||||
HBaseTestingUtility hbaseUtility = new HBaseTestingUtility(conf);
|
||||
HColumnDescriptor hcd = new HColumnDescriptor(FAMILY);
|
||||
HTableDescriptor htd = new HTableDescriptor(TableName.valueOf("foobar"));
|
||||
htd.addFamily(hcd);
|
||||
|
|
|
@ -917,7 +917,7 @@ public class TestDefaultMemStore {
|
|||
try {
|
||||
EnvironmentEdgeForMemstoreTest edge = new EnvironmentEdgeForMemstoreTest();
|
||||
EnvironmentEdgeManager.injectEdge(edge);
|
||||
HBaseTestingUtility hbaseUtility = HBaseTestingUtility.createLocalHTU(conf);
|
||||
HBaseTestingUtility hbaseUtility = new HBaseTestingUtility(conf);
|
||||
String cf = "foo";
|
||||
HRegion region =
|
||||
hbaseUtility.createTestRegion("foobar", ColumnFamilyDescriptorBuilder.of(cf));
|
||||
|
@ -943,7 +943,7 @@ public class TestDefaultMemStore {
|
|||
// the MEMSTORE_PERIODIC_FLUSH_INTERVAL is set to a higher value)
|
||||
Configuration conf = new Configuration();
|
||||
conf.setInt(HRegion.MEMSTORE_PERIODIC_FLUSH_INTERVAL, HRegion.SYSTEM_CACHE_FLUSH_INTERVAL * 10);
|
||||
HBaseTestingUtility hbaseUtility = HBaseTestingUtility.createLocalHTU(conf);
|
||||
HBaseTestingUtility hbaseUtility = new HBaseTestingUtility(conf);
|
||||
Path testDir = hbaseUtility.getDataTestDir();
|
||||
EnvironmentEdgeForMemstoreTest edge = new EnvironmentEdgeForMemstoreTest();
|
||||
EnvironmentEdgeManager.injectEdge(edge);
|
||||
|
|
|
@ -75,7 +75,7 @@ public class TestMemStoreSegmentsIterator {
|
|||
@Before
|
||||
public void setup() throws IOException {
|
||||
Configuration conf = new Configuration();
|
||||
HBaseTestingUtility hbaseUtility = HBaseTestingUtility.createLocalHTU(conf);
|
||||
HBaseTestingUtility hbaseUtility = new HBaseTestingUtility(conf);
|
||||
TableDescriptorBuilder tableDescriptorBuilder =
|
||||
TableDescriptorBuilder.newBuilder(TableName.valueOf(TABLE));
|
||||
ColumnFamilyDescriptor columnFamilyDescriptor =
|
||||
|
|
Loading…
Reference in New Issue