HBASE-2540 Make QueryMatcher.MatchCode public
git-svn-id: https://svn.apache.org/repos/asf/hadoop/hbase/trunk@944054 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
800fce986e
commit
48143c8f96
|
@ -558,6 +558,7 @@ Release 0.21.0 - Unreleased
|
||||||
HBASE-2528 ServerManager.ServerMonitor isn't daemonized
|
HBASE-2528 ServerManager.ServerMonitor isn't daemonized
|
||||||
HBASE-2537 Change ordering of maven repos listed in pom.xml to have
|
HBASE-2537 Change ordering of maven repos listed in pom.xml to have
|
||||||
ibiblio first
|
ibiblio first
|
||||||
|
HBASE-2540 Make QueryMatcher.MatchCode public (Clint Morgan via Stack)
|
||||||
|
|
||||||
NEW FEATURES
|
NEW FEATURES
|
||||||
HBASE-1961 HBase EC2 scripts
|
HBASE-1961 HBase EC2 scripts
|
||||||
|
|
|
@ -54,7 +54,7 @@ public class QueryMatcher {
|
||||||
* Additionally, this contains "early-out" language to tell the scanner to
|
* Additionally, this contains "early-out" language to tell the scanner to
|
||||||
* move on to the next File (memstore or Storefile), or to return immediately.
|
* move on to the next File (memstore or Storefile), or to return immediately.
|
||||||
*/
|
*/
|
||||||
static enum MatchCode {
|
public static enum MatchCode {
|
||||||
/**
|
/**
|
||||||
* Include KeyValue in the returned result
|
* Include KeyValue in the returned result
|
||||||
*/
|
*/
|
||||||
|
|
Loading…
Reference in New Issue