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:
parent
a278eeca23
commit
0acab6e39d
|
@ -109,6 +109,10 @@ public class ScannerResultGenerator extends ResultGenerator {
|
|||
}
|
||||
|
||||
public void close() {
|
||||
if (scanner != null) {
|
||||
scanner.close();
|
||||
scanner = null;
|
||||
}
|
||||
}
|
||||
|
||||
public boolean hasNext() {
|
||||
|
|
Loading…
Reference in New Issue