HBASE-12834 Promote ScanType to LimitedPrivate
This commit is contained in:
parent
2ecb4b1b34
commit
b421498ce6
|
@ -17,12 +17,15 @@
|
||||||
*/
|
*/
|
||||||
package org.apache.hadoop.hbase.regionserver;
|
package org.apache.hadoop.hbase.regionserver;
|
||||||
|
|
||||||
|
import org.apache.hadoop.hbase.HBaseInterfaceAudience;
|
||||||
import org.apache.hadoop.hbase.classification.InterfaceAudience;
|
import org.apache.hadoop.hbase.classification.InterfaceAudience;
|
||||||
|
import org.apache.hadoop.hbase.classification.InterfaceStability;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Enum to distinguish general scan types.
|
* Enum to distinguish general scan types.
|
||||||
*/
|
*/
|
||||||
@InterfaceAudience.Private
|
@InterfaceAudience.LimitedPrivate({HBaseInterfaceAudience.COPROC, HBaseInterfaceAudience.PHOENIX})
|
||||||
|
@InterfaceStability.Evolving
|
||||||
public enum ScanType {
|
public enum ScanType {
|
||||||
COMPACT_DROP_DELETES,
|
COMPACT_DROP_DELETES,
|
||||||
COMPACT_RETAIN_DELETES,
|
COMPACT_RETAIN_DELETES,
|
||||||
|
|
Loading…
Reference in New Issue