HBase Rest Server - DELETE scanner operation is a no-op (Aditya Kishore)

git-svn-id: https://svn.apache.org/repos/asf/hbase/trunk@1533977 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
larsh 2013-10-20 20:44:34 +00:00
parent a278eeca23
commit 0acab6e39d
1 changed files with 4 additions and 0 deletions

View File

@ -109,6 +109,10 @@ public class ScannerResultGenerator extends ResultGenerator {
}
public void close() {
if (scanner != null) {
scanner.close();
scanner = null;
}
}
public boolean hasNext() {