HBASE-6158 Data loss if the words 'merges' or 'splits' are used as Column Family name
git-svn-id: https://svn.apache.org/repos/asf/hbase/trunk@1346095 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
705ad5969f
commit
e24966fe02
@ -180,7 +180,7 @@ import com.google.common.collect.MutableClassToInstanceMap;
|
||||
@InterfaceAudience.Private
|
||||
public class HRegion implements HeapSize { // , Writable{
|
||||
public static final Log LOG = LogFactory.getLog(HRegion.class);
|
||||
static final String MERGEDIR = "merges";
|
||||
private static final String MERGEDIR = ".merges";
|
||||
|
||||
final AtomicBoolean closed = new AtomicBoolean(false);
|
||||
/* Closing can take some time; use the closing flag if there is stuff we don't
|
||||
|
@ -85,7 +85,7 @@ import com.google.common.util.concurrent.ThreadFactoryBuilder;
|
||||
@InterfaceAudience.Private
|
||||
public class SplitTransaction {
|
||||
private static final Log LOG = LogFactory.getLog(SplitTransaction.class);
|
||||
private static final String SPLITDIR = "splits";
|
||||
private static final String SPLITDIR = ".splits";
|
||||
|
||||
/*
|
||||
* Region to split
|
||||
|
Loading…
x
Reference in New Issue
Block a user