HBASE-12834 Promote ScanType to LimitedPrivate
This commit is contained in:
parent
4bfd35aabc
commit
988cba762a
|
@ -17,12 +17,15 @@
|
|||
*/
|
||||
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.InterfaceStability;
|
||||
|
||||
/**
|
||||
* Enum to distinguish general scan types.
|
||||
*/
|
||||
@InterfaceAudience.Private
|
||||
@InterfaceAudience.LimitedPrivate({HBaseInterfaceAudience.COPROC, HBaseInterfaceAudience.PHOENIX})
|
||||
@InterfaceStability.Evolving
|
||||
public enum ScanType {
|
||||
COMPACT_DROP_DELETES,
|
||||
COMPACT_RETAIN_DELETES,
|
||||
|
|
Loading…
Reference in New Issue